Skip to content

Commit

Permalink
patterntesting-rt added as AspectJ lib
Browse files Browse the repository at this point in the history
  • Loading branch information
oboehm committed May 10, 2017
1 parent 99c3529 commit 70f7034
Showing 1 changed file with 46 additions and 5 deletions.
51 changes: 46 additions & 5 deletions pom.xml
Expand Up @@ -162,38 +162,68 @@
</reporting>


<!--
Hier werden nur die Versionen der verwendeten und potentiellen Bibliotheken
definierit (alphabetisch geordnet nach groupId).
-->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>findbugs</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.1.0.Final</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.patterntesting</groupId>
<artifactId>patterntesting-rt</artifactId>
<version>1.7.0</version>
</dependency>
</dependencies>
</dependencyManagement>


<dependencies>

<!-- normale Libs -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>

<!-- fuer Validierungen -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>findbugs</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.1.0.Final</version>
</dependency>

<!-- Test-Libs -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.patterntesting</groupId>
<artifactId>patterntesting-rt</artifactId>
<version>1.7.0</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -262,6 +292,13 @@
<source>${java.version}</source>
<target>${java.version}</target>
<complianceLevel>${java.version}</complianceLevel>
<aspectLibraries>
<!-- we need the AbstractTraceAspect from PatternTesting -->
<aspectLibrary>
<groupId>org.patterntesting</groupId>
<artifactId>patterntesting-rt</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -292,6 +329,10 @@
<artifactId>log4j-core</artifactId>
<version>2.8</version>
</dependency>
<dependency>
<groupId>org.patterntesting</groupId>
<artifactId>patterntesting-rt</artifactId>
</dependency>
</dependencies>

</profile>
Expand Down

0 comments on commit 70f7034

Please sign in to comment.