Skip to content

Commit

Permalink
Merge branch 'develop' into hotfix/issue#68
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Jul 30, 2017
2 parents 047ebbd + ef30ce5 commit a3221eb
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 28 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.classpath
.project
.settings/
.vscode/
*.sh
target/
issue47.txt
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
<name>MAVEN PROCESSOR PLUGIN - ${project.version}</name>
<description>A maven plugin to process annotation for jdk6 at compile time

Expand Down Expand Up @@ -75,8 +75,8 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
</contributors>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
<name>The MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>

Expand Down
50 changes: 25 additions & 25 deletions test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin-test</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
<packaging>jar</packaging>
<name>MAVEN PROCESSOR PLUGIN TEST- ${project.version}</name>
<description></description>

<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<!--
<!--
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-->
</properties>
Expand All @@ -27,12 +27,12 @@
</dependency>

</dependencies>

<inceptionYear>2012</inceptionYear>


<build>

<pluginManagement>
<plugins>
<plugin>
Expand All @@ -46,11 +46,11 @@
<version>1.1</version>
</plugin>
</plugins>
</pluginManagement>

</pluginManagement>
<plugins>
<!--

<!--
===================================================================
PROCESSOR PLUGIN
===================================================================
Expand All @@ -64,9 +64,9 @@ PROCESSOR PLUGIN
<dependency>
<groupId>org.bsc</groupId>
<artifactId>jaxrs-wiki-processor</artifactId>
<version>2.2</version>
<version>2.2</version>
</dependency>

</dependencies>
<executions>

Expand All @@ -79,12 +79,12 @@ PROCESSOR PLUGIN
<phase>process-test-classes</phase>
<configuration>
<outputDirectory>${basedir}/src/site</outputDirectory>
<additionalSourceDirectories>

<additionalSourceDirectories>
<item>${user.home}/src</item>
<item>./src/main/java</item>
</additionalSourceDirectories>
<item>./src/main/java</item>
</additionalSourceDirectories>

<failOnError>false</failOnError>
<processors>
<processor>org.bsc.maven.plugin.processor.test.TESTWikiProcessor</processor>
Expand All @@ -95,10 +95,10 @@ PROCESSOR PLUGIN
<test>true</test>
</options>
</configuration>


</execution>

<execution>

<id>process</id>
Expand All @@ -110,11 +110,11 @@ PROCESSOR PLUGIN
<outputDirectory>${basedir}/src/site</outputDirectory>

<additionalSourceDirectories>
<item>${basedir}/src/main/java</item>
<!--
<item>${basedir}/src/main/java</item>
<!--
<item>${user.home}/src</item>
-->
</additionalSourceDirectories>
</additionalSourceDirectories>

<failOnError>false</failOnError>
<processors>
Expand Down Expand Up @@ -164,10 +164,10 @@ PROCESSOR PLUGIN
</execution>

</executions>
</plugin>
</plugins>
</build>
</plugin>
</plugins>

</build>

<profiles>
<profile>
Expand Down

0 comments on commit a3221eb

Please sign in to comment.