Skip to content

Commit

Permalink
Fix build pom issues (#909)
Browse files Browse the repository at this point in the history
* build: Delete disableModules from surefire as they don't exist
* build: Delete travis ci as we use github actions
  • Loading branch information
hazendaz authored Jan 1, 2024
1 parent c0f629a commit 2839418
Showing 1 changed file with 0 additions and 37 deletions.
37 changes: 0 additions & 37 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefireArgLine}</argLine>
<disableModules>false</disableModules>
<useModulePath>false</useModulePath>
<!-- Exclude the unit tests from the sample projects -->
<excludes>
Expand All @@ -370,7 +369,6 @@
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<argLine>${failsafeArgLine}</argLine>
<disableModules>false</disableModules>
<useModulePath>false</useModulePath>
<systemPropertyVariables>
<sonar.server.version>${sonar.server.version}</sonar.server.version>
Expand Down Expand Up @@ -490,41 +488,6 @@
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>travis</id>
<activation>
<property>
<name>env.CI</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<source>8</source>
<tags>
<tag>
<name>ParametersAreNonnullByDefault</name>
<placement>a</placement>
<head>Parameters Are Nonnull By Default</head>
</tag>
</tags>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>deploy</id>
<build>
Expand Down

0 comments on commit 2839418

Please sign in to comment.