mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 20:50:55 +00:00
* [Java] #3024 - Add build-helper-maven-plugin version to retrofit client template * [Java] #3024 - Add build-helper-maven-plugin version to feign client template * [Java] #3024 - Add build-helper-maven-plugin version to jersey client template * [Java] #3024 - Add build-helper-maven-plugin version to resteasy client template
This commit is contained in:
parent
44853c31b6
commit
3bd2da9a8b
@ -104,6 +104,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
|
<version>1.10</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>add_sources</id>
|
<id>add_sources</id>
|
||||||
|
@ -104,6 +104,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
|
<version>1.10</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>add_sources</id>
|
<id>add_sources</id>
|
||||||
|
@ -85,6 +85,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
|
<version>1.10</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>add_sources</id>
|
<id>add_sources</id>
|
||||||
|
@ -104,6 +104,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
|
<version>1.10</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>add_sources</id>
|
<id>add_sources</id>
|
||||||
|
@ -104,6 +104,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
|
<version>1.10</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>add_sources</id>
|
<id>add_sources</id>
|
||||||
|
@ -83,74 +83,77 @@
|
|||||||
<configuration>
|
<configuration>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
<plugin>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<version>1.10</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>add_sources</id>
|
<id>add_sources</id>
|
||||||
<phase>generate-sources</phase>
|
<phase>generate-sources</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>add-source</goal>
|
<goal>add-source</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<sources>
|
<sources>
|
||||||
<source>src/main/java</source>
|
<source>
|
||||||
</sources>
|
src/main/java</source>
|
||||||
</configuration>
|
</sources>
|
||||||
</execution>
|
</configuration>
|
||||||
<execution>
|
</execution>
|
||||||
<id>add_test_sources</id>
|
<execution>
|
||||||
<phase>generate-test-sources</phase>
|
<id>add_test_sources</id>
|
||||||
<goals>
|
<phase>generate-test-sources</phase>
|
||||||
<goal>add-test-source</goal>
|
<goals>
|
||||||
</goals>
|
<goal>add-test-source</goal>
|
||||||
<configuration>
|
</goals>
|
||||||
<sources>
|
<configuration>
|
||||||
<source>src/test/java</source>
|
<sources>
|
||||||
</sources>
|
<source>
|
||||||
</configuration>
|
src/test/java</source>
|
||||||
</execution>
|
</sources>
|
||||||
</executions>
|
</configuration>
|
||||||
</plugin>
|
</execution>
|
||||||
<plugin>
|
</executions>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</plugin>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<plugin>
|
||||||
<version>3.6.1</version>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<configuration>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<source>1.7</source>
|
<version>3.6.1</version>
|
||||||
<target>1.7</target>
|
<configuration>
|
||||||
</configuration>
|
<source>
|
||||||
</plugin>
|
1.7</source>
|
||||||
<plugin>
|
<target>1.7</target>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</configuration>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
</plugin>
|
||||||
<version>2.10.4</version>
|
<plugin>
|
||||||
<executions>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<execution>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<id>attach-javadocs</id>
|
<version>2.10.4</version>
|
||||||
<goals>
|
<executions>
|
||||||
<goal>jar</goal>
|
<execution>
|
||||||
</goals>
|
<id>attach-javadocs</id>
|
||||||
</execution>
|
<goals>
|
||||||
</executions>
|
<goal>jar</goal>
|
||||||
</plugin>
|
</goals>
|
||||||
<plugin>
|
</execution>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</executions>
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
</plugin>
|
||||||
<version>2.2.1</version>
|
<plugin>
|
||||||
<executions>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<execution>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<id>attach-sources</id>
|
<version>2.2.1</version>
|
||||||
<goals>
|
<executions>
|
||||||
<goal>jar-no-fork</goal>
|
<execution>
|
||||||
</goals>
|
<id>attach-sources</id>
|
||||||
</execution>
|
<goals>
|
||||||
</executions>
|
<goal>jar-no-fork</goal>
|
||||||
</plugin>
|
</goals>
|
||||||
</plugins>
|
</execution>
|
||||||
</build>
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
|
@ -84,73 +84,77 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
<executions>
|
<version>1.10</version>
|
||||||
<execution>
|
<executions>
|
||||||
<id>add_sources</id>
|
<execution>
|
||||||
<phase>generate-sources</phase>
|
<id>add_sources</id>
|
||||||
<goals>
|
<phase>generate-sources</phase>
|
||||||
<goal>add-source</goal>
|
<goals>
|
||||||
</goals>
|
<goal>add-source</goal>
|
||||||
<configuration>
|
</goals>
|
||||||
<sources>
|
<configuration>
|
||||||
<source>src/main/java</source>
|
<sources>
|
||||||
</sources>
|
<source>
|
||||||
</configuration>
|
src/main/java</source>
|
||||||
</execution>
|
</sources>
|
||||||
<execution>
|
</configuration>
|
||||||
<id>add_test_sources</id>
|
</execution>
|
||||||
<phase>generate-test-sources</phase>
|
<execution>
|
||||||
<goals>
|
<id>add_test_sources</id>
|
||||||
<goal>add-test-source</goal>
|
<phase>generate-test-sources</phase>
|
||||||
</goals>
|
<goals>
|
||||||
<configuration>
|
<goal>add-test-source</goal>
|
||||||
<sources>
|
</goals>
|
||||||
<source>src/test/java</source>
|
<configuration>
|
||||||
</sources>
|
<sources>
|
||||||
</configuration>
|
<source>
|
||||||
</execution>
|
src/test/java</source>
|
||||||
</executions>
|
</sources>
|
||||||
</plugin>
|
</configuration>
|
||||||
<plugin>
|
</execution>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</executions>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
</plugin>
|
||||||
<version>3.6.1</version>
|
<plugin>
|
||||||
<configuration>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<source>1.8</source>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<target>1.8</target>
|
<version>3.6.1</version>
|
||||||
</configuration>
|
<configuration>
|
||||||
</plugin>
|
<source>
|
||||||
<plugin>
|
1.8</source>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<target>1.8</target>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
</configuration>
|
||||||
<version>2.10.4</version>
|
</plugin>
|
||||||
<executions>
|
<plugin>
|
||||||
<execution>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<id>attach-javadocs</id>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<goals>
|
<version>2.10.4</version>
|
||||||
<goal>jar</goal>
|
<executions>
|
||||||
</goals>
|
<execution>
|
||||||
</execution>
|
<id>attach-javadocs</id>
|
||||||
</executions>
|
<goals>
|
||||||
</plugin>
|
<goal>jar</goal>
|
||||||
<plugin>
|
</goals>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</execution>
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
</executions>
|
||||||
<version>2.2.1</version>
|
</plugin>
|
||||||
<executions>
|
<plugin>
|
||||||
<execution>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<id>attach-sources</id>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<goals>
|
<version>2.2.1</version>
|
||||||
<goal>jar-no-fork</goal>
|
<executions>
|
||||||
</goals>
|
<execution>
|
||||||
</execution>
|
<id>attach-sources</id>
|
||||||
</executions>
|
<goals>
|
||||||
</plugin>
|
<goal>jar-no-fork</goal>
|
||||||
</plugins>
|
</goals>
|
||||||
</build>
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
|
@ -84,73 +84,77 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
<executions>
|
<version>1.10</version>
|
||||||
<execution>
|
<executions>
|
||||||
<id>add_sources</id>
|
<execution>
|
||||||
<phase>generate-sources</phase>
|
<id>add_sources</id>
|
||||||
<goals>
|
<phase>generate-sources</phase>
|
||||||
<goal>add-source</goal>
|
<goals>
|
||||||
</goals>
|
<goal>add-source</goal>
|
||||||
<configuration>
|
</goals>
|
||||||
<sources>
|
<configuration>
|
||||||
<source>src/main/java</source>
|
<sources>
|
||||||
</sources>
|
<source>
|
||||||
</configuration>
|
src/main/java</source>
|
||||||
</execution>
|
</sources>
|
||||||
<execution>
|
</configuration>
|
||||||
<id>add_test_sources</id>
|
</execution>
|
||||||
<phase>generate-test-sources</phase>
|
<execution>
|
||||||
<goals>
|
<id>add_test_sources</id>
|
||||||
<goal>add-test-source</goal>
|
<phase>generate-test-sources</phase>
|
||||||
</goals>
|
<goals>
|
||||||
<configuration>
|
<goal>add-test-source</goal>
|
||||||
<sources>
|
</goals>
|
||||||
<source>src/test/java</source>
|
<configuration>
|
||||||
</sources>
|
<sources>
|
||||||
</configuration>
|
<source>
|
||||||
</execution>
|
src/test/java</source>
|
||||||
</executions>
|
</sources>
|
||||||
</plugin>
|
</configuration>
|
||||||
<plugin>
|
</execution>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</executions>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
</plugin>
|
||||||
<version>3.6.1</version>
|
<plugin>
|
||||||
<configuration>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<source>1.7</source>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<target>1.7</target>
|
<version>3.6.1</version>
|
||||||
</configuration>
|
<configuration>
|
||||||
</plugin>
|
<source>
|
||||||
<plugin>
|
1.7</source>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<target>1.7</target>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
</configuration>
|
||||||
<version>2.10.4</version>
|
</plugin>
|
||||||
<executions>
|
<plugin>
|
||||||
<execution>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<id>attach-javadocs</id>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<goals>
|
<version>2.10.4</version>
|
||||||
<goal>jar</goal>
|
<executions>
|
||||||
</goals>
|
<execution>
|
||||||
</execution>
|
<id>attach-javadocs</id>
|
||||||
</executions>
|
<goals>
|
||||||
</plugin>
|
<goal>jar</goal>
|
||||||
<plugin>
|
</goals>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</execution>
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
</executions>
|
||||||
<version>2.2.1</version>
|
</plugin>
|
||||||
<executions>
|
<plugin>
|
||||||
<execution>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<id>attach-sources</id>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<goals>
|
<version>2.2.1</version>
|
||||||
<goal>jar-no-fork</goal>
|
<executions>
|
||||||
</goals>
|
<execution>
|
||||||
</execution>
|
<id>attach-sources</id>
|
||||||
</executions>
|
<goals>
|
||||||
</plugin>
|
<goal>jar-no-fork</goal>
|
||||||
</plugins>
|
</goals>
|
||||||
</build>
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
|
@ -65,95 +65,99 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
<executions>
|
<version>1.10</version>
|
||||||
<execution>
|
<executions>
|
||||||
<id>add_sources</id>
|
<execution>
|
||||||
<phase>generate-sources</phase>
|
<id>add_sources</id>
|
||||||
<goals>
|
<phase>generate-sources</phase>
|
||||||
<goal>add-source</goal>
|
<goals>
|
||||||
</goals>
|
<goal>add-source</goal>
|
||||||
<configuration>
|
</goals>
|
||||||
<sources>
|
<configuration>
|
||||||
<source>src/main/java</source>
|
<sources>
|
||||||
</sources>
|
<source>
|
||||||
</configuration>
|
src/main/java</source>
|
||||||
</execution>
|
</sources>
|
||||||
<execution>
|
</configuration>
|
||||||
<id>add_test_sources</id>
|
</execution>
|
||||||
<phase>generate-test-sources</phase>
|
<execution>
|
||||||
<goals>
|
<id>add_test_sources</id>
|
||||||
<goal>add-test-source</goal>
|
<phase>generate-test-sources</phase>
|
||||||
</goals>
|
<goals>
|
||||||
<configuration>
|
<goal>add-test-source</goal>
|
||||||
<sources>
|
</goals>
|
||||||
<source>src/test/java</source>
|
<configuration>
|
||||||
</sources>
|
<sources>
|
||||||
</configuration>
|
<source>
|
||||||
</execution>
|
src/test/java</source>
|
||||||
</executions>
|
</sources>
|
||||||
</plugin>
|
</configuration>
|
||||||
<plugin>
|
</execution>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</executions>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
</plugin>
|
||||||
<version>2.5.1</version>
|
<plugin>
|
||||||
<configuration>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<source>1.7</source>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<target>1.7</target>
|
<version>2.5.1</version>
|
||||||
</configuration>
|
<configuration>
|
||||||
</plugin>
|
<source>
|
||||||
<plugin>
|
1.7</source>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<target>1.7</target>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
</configuration>
|
||||||
<version>2.10.4</version>
|
</plugin>
|
||||||
</plugin>
|
<plugin>
|
||||||
</plugins>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
</build>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<dependencies>
|
<version>2.10.4</version>
|
||||||
<dependency>
|
</plugin>
|
||||||
<groupId>io.swagger</groupId>
|
</plugins>
|
||||||
<artifactId>swagger-annotations</artifactId>
|
</build>
|
||||||
<version>${swagger-core-version}</version>
|
<dependencies>
|
||||||
</dependency>
|
<dependency>
|
||||||
<!-- HTTP client: jersey-client -->
|
<groupId>io.swagger</groupId>
|
||||||
<dependency>
|
<artifactId>swagger-annotations</artifactId>
|
||||||
<groupId>org.jboss.resteasy</groupId>
|
<version>${swagger-core-version}</version>
|
||||||
<artifactId>resteasy-client</artifactId>
|
</dependency>
|
||||||
<version>${resteasy-version}</version>
|
<!-- HTTP client: jersey-client -->
|
||||||
</dependency>
|
<dependency>
|
||||||
<dependency>
|
<groupId>org.jboss.resteasy</groupId>
|
||||||
<groupId>org.jboss.resteasy</groupId>
|
<artifactId>resteasy-client</artifactId>
|
||||||
<artifactId>resteasy-multipart-provider</artifactId>
|
<version>${resteasy-version}</version>
|
||||||
<version>${resteasy-version}</version>
|
</dependency>
|
||||||
</dependency>
|
<dependency>
|
||||||
<!-- JSON processing: jackson -->
|
<groupId>org.jboss.resteasy</groupId>
|
||||||
<dependency>
|
<artifactId>resteasy-multipart-provider</artifactId>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<version>${resteasy-version}</version>
|
||||||
<artifactId>jackson-core</artifactId>
|
</dependency>
|
||||||
<version>${jackson-version}</version>
|
<!-- JSON processing: jackson -->
|
||||||
</dependency>
|
<dependency>
|
||||||
<dependency>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<artifactId>jackson-core</artifactId>
|
||||||
<artifactId>jackson-annotations</artifactId>
|
<version>${jackson-version}</version>
|
||||||
<version>${jackson-version}</version>
|
</dependency>
|
||||||
</dependency>
|
<dependency>
|
||||||
<dependency>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<artifactId>jackson-annotations</artifactId>
|
||||||
<artifactId>jackson-databind</artifactId>
|
<version>${jackson-version}</version>
|
||||||
<version>${jackson-version}</version>
|
</dependency>
|
||||||
</dependency>
|
<dependency>
|
||||||
<dependency>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<groupId>com.fasterxml.jackson.datatype</groupId>
|
<artifactId>jackson-databind</artifactId>
|
||||||
<artifactId>jackson-datatype-joda</artifactId>
|
<version>${jackson-version}</version>
|
||||||
<version>${jackson-version}</version>
|
</dependency>
|
||||||
</dependency>
|
<dependency>
|
||||||
<dependency>
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
<groupId>joda-time</groupId>
|
<artifactId>jackson-datatype-joda</artifactId>
|
||||||
<artifactId>joda-time</artifactId>
|
<version>${jackson-version}</version>
|
||||||
<version>${jodatime-version}</version>
|
</dependency>
|
||||||
</dependency>
|
<dependency>
|
||||||
|
<groupId>joda-time</groupId>
|
||||||
|
<artifactId>joda-time</artifactId>
|
||||||
|
<version>${jodatime-version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- Base64 encoding that works in both JVM and Android -->
|
<!-- Base64 encoding that works in both JVM and Android -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -84,73 +84,76 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
<executions>
|
<version>1.10</version>
|
||||||
<execution>
|
<executions>
|
||||||
<id>add_sources</id>
|
<execution>
|
||||||
<phase>generate-sources</phase>
|
<id>add_sources</id>
|
||||||
<goals>
|
<phase>generate-sources</phase>
|
||||||
<goal>add-source</goal>
|
<goals>
|
||||||
</goals>
|
<goal>add-source</goal>
|
||||||
<configuration>
|
</goals>
|
||||||
<sources>
|
<configuration>
|
||||||
<source>src/main/java</source>
|
<sources>
|
||||||
</sources>
|
<source>
|
||||||
</configuration>
|
src/main/java</source>
|
||||||
</execution>
|
</sources>
|
||||||
<execution>
|
</configuration>
|
||||||
<id>add_test_sources</id>
|
</execution>
|
||||||
<phase>generate-test-sources</phase>
|
<execution>
|
||||||
<goals>
|
<id>add_test_sources</id>
|
||||||
<goal>add-test-source</goal>
|
<phase>generate-test-sources</phase>
|
||||||
</goals>
|
<goals>
|
||||||
<configuration>
|
<goal>add-test-source</goal>
|
||||||
<sources>
|
</goals>
|
||||||
<source>src/test/java</source>
|
<configuration>
|
||||||
</sources>
|
<sources>
|
||||||
</configuration>
|
<source>
|
||||||
</execution>
|
src/test/java</source>
|
||||||
</executions>
|
</sources>
|
||||||
</plugin>
|
</configuration>
|
||||||
<plugin>
|
</execution>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</executions>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
</plugin>
|
||||||
<version>3.6.1</version>
|
<plugin>
|
||||||
<configuration>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<source>1.7</source>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<target>1.7</target>
|
<version>3.6.1</version>
|
||||||
</configuration>
|
<configuration>
|
||||||
</plugin>
|
<source>1.7</source>
|
||||||
<plugin>
|
<target>1.7</target>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</configuration>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
</plugin>
|
||||||
<version>2.10.4</version>
|
<plugin>
|
||||||
<executions>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<execution>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<id>attach-javadocs</id>
|
<version>2.10.4</version>
|
||||||
<goals>
|
<executions>
|
||||||
<goal>jar</goal>
|
<execution>
|
||||||
</goals>
|
<id>attach-javadocs</id>
|
||||||
</execution>
|
<goals>
|
||||||
</executions>
|
<goal>jar</goal>
|
||||||
</plugin>
|
</goals>
|
||||||
<plugin>
|
</execution>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</executions>
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
</plugin>
|
||||||
<version>2.2.1</version>
|
<plugin>
|
||||||
<executions>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<execution>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<id>attach-sources</id>
|
<version>2.2.1</version>
|
||||||
<goals>
|
<executions>
|
||||||
<goal>jar-no-fork</goal>
|
<execution>
|
||||||
</goals>
|
<id>attach-sources</id>
|
||||||
</execution>
|
<goals>
|
||||||
</executions>
|
<goal>jar-no-fork</goal>
|
||||||
</plugin>
|
</goals>
|
||||||
</plugins>
|
</execution>
|
||||||
</build>
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user