|
@@ -4,7 +4,7 @@
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.l2jserver</groupId>
|
|
<groupId>com.l2jserver</groupId>
|
|
<artifactId>l2j-server-cli</artifactId>
|
|
<artifactId>l2j-server-cli</artifactId>
|
|
- <version>1.2.0</version>
|
|
|
|
|
|
+ <version>1.2.1</version>
|
|
<name>L2J Server Command Line</name>
|
|
<name>L2J Server Command Line</name>
|
|
<properties>
|
|
<properties>
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
@@ -29,7 +29,7 @@
|
|
<!-- L2J -->
|
|
<!-- L2J -->
|
|
<l2j-server-commons.version>2.6.7.0</l2j-server-commons.version>
|
|
<l2j-server-commons.version>2.6.7.0</l2j-server-commons.version>
|
|
<!-- Plugins -->
|
|
<!-- Plugins -->
|
|
- <dependency-check-maven.version>9.0.4</dependency-check-maven.version>
|
|
|
|
|
|
+ <dependency-check-maven.version>9.0.6</dependency-check-maven.version>
|
|
<maven-dependency-plugin.version>3.6.1</maven-dependency-plugin.version>
|
|
<maven-dependency-plugin.version>3.6.1</maven-dependency-plugin.version>
|
|
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
|
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
|
<maven-assembly-plugin.version>3.6.0</maven-assembly-plugin.version>
|
|
<maven-assembly-plugin.version>3.6.0</maven-assembly-plugin.version>
|
|
@@ -156,23 +156,32 @@
|
|
</execution>
|
|
</execution>
|
|
</executions>
|
|
</executions>
|
|
</plugin>
|
|
</plugin>
|
|
- <plugin>
|
|
|
|
- <groupId>org.owasp</groupId>
|
|
|
|
- <artifactId>dependency-check-maven</artifactId>
|
|
|
|
- <version>${dependency-check-maven.version}</version>
|
|
|
|
- <configuration>
|
|
|
|
- <failBuildOnCVSS>8</failBuildOnCVSS>
|
|
|
|
- <assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
|
|
|
|
- <nvdApiKey>${env.NVD_API_KEY}</nvdApiKey>
|
|
|
|
- </configuration>
|
|
|
|
- <executions>
|
|
|
|
- <execution>
|
|
|
|
- <goals>
|
|
|
|
- <goal>check</goal>
|
|
|
|
- </goals>
|
|
|
|
- </execution>
|
|
|
|
- </executions>
|
|
|
|
- </plugin>
|
|
|
|
</plugins>
|
|
</plugins>
|
|
</build>
|
|
</build>
|
|
|
|
+ <profiles>
|
|
|
|
+ <profile>
|
|
|
|
+ <id>ci</id>
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.owasp</groupId>
|
|
|
|
+ <artifactId>dependency-check-maven</artifactId>
|
|
|
|
+ <version>${dependency-check-maven.version}</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <failBuildOnCVSS>8</failBuildOnCVSS>
|
|
|
|
+ <assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
|
|
|
|
+ <nvdApiKey>${env.NVD_API_KEY}</nvdApiKey>
|
|
|
|
+ </configuration>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>check</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+ </profile>
|
|
|
|
+ </profiles>
|
|
</project>
|
|
</project>
|