Skip to content

Commit

Permalink
Release to maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
wilmveel committed Oct 9, 2023
1 parent e35df51 commit cdf7f99
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add the following configuration to your maven pom.xml
<plugin>
<groupId>community.flock</groupId>
<artifactId>graphql-simple-bindings-maven-plugin</artifactId>
<version>0.7.0</version>
<version>0.8.0</version>
<configuration>
<language>All</language>
<packageName>community.flock.eco.feature.member.graphql</packageName>
Expand Down
2 changes: 1 addition & 1 deletion graphql-simple-bindings-boot-shell/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>community.flock</groupId>
<artifactId>graphql-simple-bindings</artifactId>
<version>0.7.0</version>
<version>0.8.0</version>
</parent>

<artifactId>graphql-simple-bindings-boot-shell</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion graphql-simple-bindings-emitter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>community.flock</groupId>
<artifactId>graphql-simple-bindings</artifactId>
<version>0.7.0</version>
<version>0.8.0</version>
</parent>

<artifactId>graphql-simple-bindings-emitter</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion graphql-simple-bindings-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>community.flock</groupId>
<artifactId>graphql-simple-bindings</artifactId>
<version>0.7.0</version>
<version>0.8.0</version>
</parent>

<artifactId>graphql-simple-bindings-maven-plugin</artifactId>
Expand Down
60 changes: 50 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
</parent>
<groupId>community.flock</groupId>
<artifactId>graphql-simple-bindings</artifactId>
<version>0.7.0</version>
<version>0.8.0</version>
<name>graphql-simple-bindings</name>
<description>Generate Kotlin data classes and TypeScript interfaces from GraphQL schema's</description>

<modules>
<module>graphql-simple-bindings-emitter</module>
<module>graphql-simple-bindings-maven-plugin</module>
<module>graphql-simple-bindings-boot-shell</module>
<!-- <module>graphql-simple-bindings-boot-shell</module>-->
</modules>

<properties>
Expand Down Expand Up @@ -86,19 +86,59 @@
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>1.9.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>javadocJar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<distributionManagement>
<repository>
<id>jfrog-flock-community</id>
<name>jfrog-repo-releases</name>
<url>https://flock.jfrog.io/artifactory/flock-maven</url>
</repository>
<snapshotRepository>
<id>jfrog-flock-community</id>
<name>jfrog-repo-snapshots</name>
<url>https://flock.jfrog.io/artifactory/flock-maven</url>
<id>flock</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>flock</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

</project>

0 comments on commit cdf7f99

Please sign in to comment.