Skip to content

Commit

Permalink
Merge branch 'feature/pr45' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Jun 28, 2021
2 parents 5f1a8b8 + 83ebf7b commit f9a21ca
Show file tree
Hide file tree
Showing 6 changed files with 1,169 additions and 823 deletions.
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,26 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<artifactId>plexus-compiler-manager</artifactId>
<version>${plexus.compiler.version}</version>
</dependency>

<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-javac</artifactId>
<version>${plexus.compiler.version}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.apache.maven.plugin-testing</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>3.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-compat</artifactId>
<version>${maven.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
22 changes: 22 additions & 0 deletions processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,18 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-compat</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.maven.plugin-testing</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<reporting>
Expand All @@ -70,6 +82,16 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
</reporting>
<build>

<resources>
<resource>
<directory>src/main/resources</directory>
</resource>

<resource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>

<plugin>
Expand Down

0 comments on commit f9a21ca

Please sign in to comment.