Skip to content

Commit

Permalink
[maven-release-plugin] prepare release cds-java-artefacts-1.0.0-RC7
Browse files Browse the repository at this point in the history
  • Loading branch information
vadkor committed Dec 5, 2019
1 parent 8603e85 commit fdde892
Show file tree
Hide file tree
Showing 8 changed files with 95 additions and 8 deletions.
2 changes: 1 addition & 1 deletion api-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>au.org.consumerdatastandards</groupId>
<artifactId>cds-java-artefacts</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-RC7</version>
</parent>
<artifactId>api-model</artifactId>
<name>API Model</name>
Expand Down
2 changes: 1 addition & 1 deletion client-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>au.org.consumerdatastandards</groupId>
<artifactId>cds-java-artefacts</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-RC7</version>
</parent>
<artifactId>client-cli</artifactId>
<name>Client CLI</name>
Expand Down
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>au.org.consumerdatastandards</groupId>
<artifactId>cds-java-artefacts</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-RC7</version>
</parent>
<artifactId>client</artifactId>
<name>Client Library</name>
Expand Down
87 changes: 87 additions & 0 deletions codegen/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>cds-java-artefacts</artifactId>
<groupId>au.org.consumerdatastandards</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>codegen</artifactId>
<name>Code Generator</name>
<description>This artefact generates other artefacts such as API client, API server out of API Model</description>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>au.org.consumerdatastandards.codegen.CodegenCLI</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>build</goal>
<goal>push</goal>
</goals>
</execution>
</executions>
<configuration>
<repository>consumerdatastandardsaustralia/codegen</repository>
<tag>${project.version}</tag>
<buildArgs>
<JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
</buildArgs>
<useMavenSettingsForAuth>true</useMavenSettingsForAuth>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
<properties>
<google-java-format.version>1.7</google-java-format.version>
<commons-text.version>1.6</commons-text.version>
<jcommander.version>1.72</jcommander.version>
<swagger-codegen.version>2.4.8</swagger-codegen.version>
<guava.version>27.1-jre</guava.version>
<commons-cli.version>1.4</commons-cli.version>
</properties>
</project>
2 changes: 1 addition & 1 deletion data-holder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>au.org.consumerdatastandards</groupId>
<artifactId>cds-java-artefacts</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-RC7</version>
</parent>
<artifactId>data-holder</artifactId>
<name>Data Holder</name>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>au.org.consumerdatastandards</groupId>
<artifactId>cds-java-artefacts</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-RC7</version>
<packaging>pom</packaging>
<name>CDS Java Artefacts</name>
<description>A collection of Java artefacts for Consumer Data Standards Australia</description>
Expand All @@ -30,7 +30,7 @@
<url>https://github.com/ConsumerDataStandardsAustralia/java-artefacts</url>
<connection>scm:git:https://github.com/ConsumerDataStandardsAustralia/java-artefacts.git</connection>
<developerConnection>scm:git:https://github.com/ConsumerDataStandardsAustralia/java-artefacts.git</developerConnection>
<tag>HEAD</tag>
<tag>cds-java-artefacts-1.0.0-RC7</tag>
</scm>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion reference-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>au.org.consumerdatastandards</groupId>
<artifactId>cds-java-artefacts</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-RC7</version>
</parent>
<artifactId>reference-test</artifactId>
<name>Reference Test</name>
Expand Down
2 changes: 1 addition & 1 deletion reflection/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>au.org.consumerdatastandards</groupId>
<artifactId>cds-java-artefacts</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-RC7</version>
</parent>
<artifactId>reflection</artifactId>
<name>Reflection</name>
Expand Down

0 comments on commit fdde892

Please sign in to comment.