Skip to content

Commit

Permalink
Try to indentify de.tum.cit.ase.ares.api.security.ConfigurationException
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Paulsen committed Oct 29, 2024
1 parent baa3b13 commit 25c82f9
Showing 1 changed file with 26 additions and 28 deletions.
54 changes: 26 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
<!-- full certificate fingerprint: 23E62BB282A473EE4DDA2F8763EFD39363D21A8D -->
<gpg.key.id>23E62BB282A473EE4DDA2F8763EFD39363D21A8D</gpg.key.id>
<aspectj.version>1.9.22</aspectj.version>

<instrumentation-path>${project.build.directory}${file.separator}${project.artifactId}-${project.version}-agent.jar</instrumentation-path>
<aspectj-path>${user.home}${file.separator}.m2${file.separator}repository${file.separator}org${file.separator}aspectj${file.separator}aspectjrt${file.separator}${aspectj.version}${file.separator}aspectjrt-${aspectj.version}.jar</aspectj-path>
</properties>
<dependencies>
<!-- Junit frameworks -->
Expand Down Expand Up @@ -362,28 +365,27 @@
<rules>
<requireFilesDontExist>
<files>
<file>${project.build.outputDirectory}${file.separator}ch${file.separator}qos${file.separator}logback${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}com${file.separator}intellij${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}com${file.separator}sun${file.separator}</file>
<!-- We cannot fulfill this one because we are building those classes here
<file>${project.build.outputDirectory}${file.separator}de${file.separator}tum${file.separator}cit${file.separator}ase${file.separator}ares${file.separator}api${file.separator}</file> -->
<file>${project.build.outputDirectory}${file.separator}java${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}javax${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}jdk${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}net${file.separator}jqwik${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}org${file.separator}apache${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}org${file.separator}assertj${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}org${file.separator}eclipse${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}org${file.separator}jacoco${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}org${file.separator}json${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}org${file.separator}junit${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}org${file.separator}opentest4j${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}sun${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}com${file.separator}github${file.separator}javaparser${file.separator}</file>
<!-- Required for de.tum.cit.ase.ares.api.security.ArtemisSecurityConfigurationTest -->
<!-- <file>${project.build.outputDirectory}${file.separator}abc${file.separator}def${file.separator}</file> -->
<file>${project.build.outputDirectory}${file.separator}org${file.separator}gradle${file.separator}</file>
<file>${project.build.outputDirectory}${file.separator}worker${file.separator}org${file.separator}gradle${file.separator}</file>
<file>${project.build.outputDirectory}/abc/def/</file>
<file>${project.build.outputDirectory}/ch/qos/logback/</file>
<file>${project.build.outputDirectory}/com/github/javaparser/</file>
<file>${project.build.outputDirectory}/com/intellij/</file>
<file>${project.build.outputDirectory}/com/sun/</file>
<file>${project.build.outputDirectory}/de/tum/cit/ase/ares/api/</file>
<file>${project.build.outputDirectory}/de/tum/in/test/api/</file>
<file>${project.build.outputDirectory}/java/</file>
<file>${project.build.outputDirectory}/javax/</file>
<file>${project.build.outputDirectory}/jdk/</file>
<file>${project.build.outputDirectory}/net/jqwik/</file>
<file>${project.build.outputDirectory}/org/apache/</file>
<file>${project.build.outputDirectory}/org/assertj/</file>
<file>${project.build.outputDirectory}/org/eclipse/</file>
<file>${project.build.outputDirectory}/org/jacoco/</file>
<file>${project.build.outputDirectory}/org/json/</file>
<file>${project.build.outputDirectory}/org/junit/</file>
<file>${project.build.outputDirectory}/org/opentest4j/</file>
<file>${project.build.outputDirectory}/sun/</file>
<file>${project.build.outputDirectory}/org/gradle/</file>
<file>${project.build.outputDirectory}/worker/org/gradle/</file>
</files>
</requireFilesDontExist>
</rules>
Expand Down Expand Up @@ -460,9 +462,7 @@
<version>3.5.1</version>
<configuration>
<forkCount>1</forkCount>
<argLine>-javaagent:${project.build.directory}${file.separator}${project.artifactId}-${project.version}-agent.jar
-Xbootclasspath/a:${user.home}${file.separator}.m2${file.separator}repository${file.separator}org${file.separator}aspectj${file.separator}aspectjrt${file.separator}${aspectj.version}${file.separator}aspectjrt-${aspectj.version}.jar
</argLine>
<argLine>-javaagent:${instrumentation-path} -Xbootclasspath/a:${aspectj-path}</argLine>
</configuration>
</plugin>
<!-- Shade Plugin to package the agent JAR -->
Expand Down Expand Up @@ -635,9 +635,7 @@
<version>3.3.0</version>
<configuration>
<forkCount>1</forkCount>
<argLine>-javaagent:${project.build.directory}${file.separator}${project.artifactId}-${project.version}-agent.jar
-Xbootclasspath/a:${user.home}${file.separator}.m2${file.separator}repository${file.separator}org${file.separator}aspectj${file.separator}aspectjrt${file.separator}${aspectj.version}${file.separator}aspectjrt-${aspectj.version}.jar
</argLine>
<argLine>-javaagent:${instrumentation-path} -Xbootclasspath/a:${aspectj-path}</argLine>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 25c82f9

Please sign in to comment.