Update pom.xml

more config fix
This commit is contained in:
2026-06-04 07:16:46 -04:00
parent c8f6b63e60
commit 08d0c0be83
+125 -89
View File
@@ -1,98 +1,134 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<modelVersion>4.0.0</modelVersion> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
https://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>de.caydenno1.xacrypto</groupId> <modelVersion>4.0.0</modelVersion>
<artifactId>XACrypto</artifactId>
<version>1.0-SNAPSHOT</version>
<name>XACrypto</name> <groupId>de.caydenno1.xacrypto</groupId>
<url>https://ga-bv.mathai.cloud/</url> <artifactId>xacrypto</artifactId>
<version>1.0.0-SNAPSHOT</version>
<properties> <name>XACrypto</name>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <description>A multi-purpose Cryptography library in Java.</description>
<maven.compiler.release>25</maven.compiler.release> <url>https://ga-bv.mathai.cloud/</url>
</properties>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>QXIoa</id>
<name>Xiao Xiong</name>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/Geprivilegieerde-Anonimiteit-BV/XACrypto.git</connection>
<developerConnection>scm:git:ssh://github.com/Geprivilegieerde-Anonimiteit-BV/XACrypto.git</developerConnection>
<url>https://github.com/Geprivilegieerde-Anonimiteit-BV/XACrypto</url>
<tag>HEAD</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>25</maven.compiler.release>
<junit.version>5.11.0</junit.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.junit</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-bom</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>5.11.0</version> <scope>test</scope>
<type>pom</type> </dependency>
<scope>import</scope>
</dependency> <dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
</dependencyManagement>
<dependencies> <build>
<dependency> <plugins>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build> <plugin>
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <groupId>org.apache.maven.plugins</groupId>
<plugins> <artifactId>maven-compiler-plugin</artifactId>
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> <version>3.14.0</version>
<plugin> </plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.4.0</version> <plugin>
</plugin> <groupId>org.apache.maven.plugins</groupId>
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> <artifactId>maven-surefire-plugin</artifactId>
<plugin> <version>3.5.2</version>
<artifactId>maven-resources-plugin</artifactId> </plugin>
<version>3.3.1</version>
</plugin> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>3.13.0</version> <version>3.3.1</version>
</plugin> <executions>
<plugin> <execution>
<artifactId>maven-surefire-plugin</artifactId> <id>attach-sources</id>
<version>3.3.0</version> <goals>
</plugin> <goal>jar-no-fork</goal>
<plugin> </goals>
<artifactId>maven-jar-plugin</artifactId> </execution>
<version>3.4.2</version> </executions>
</plugin> </plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId> <plugin>
<version>3.1.2</version> <groupId>org.apache.maven.plugins</groupId>
</plugin> <artifactId>maven-javadoc-plugin</artifactId>
<plugin> <version>3.11.2</version>
<artifactId>maven-deploy-plugin</artifactId> <executions>
<version>3.1.2</version> <execution>
</plugin> <id>attach-javadocs</id>
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> <goals>
<plugin> <goal>jar</goal>
<artifactId>maven-site-plugin</artifactId> </goals>
<version>3.12.1</version> </execution>
</plugin> </executions>
<plugin> </plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.6.1</version> <plugin>
</plugin> <groupId>org.sonatype.central</groupId>
</plugins> <artifactId>central-publishing-maven-plugin</artifactId>
</pluginManagement> <version>0.9.0</version>
<plugins> <extensions>true</extensions>
<plugin> <configuration>
<groupId>org.apache.maven.plugins</groupId> <publishingServerId>central</publishingServerId>
<artifactId>maven-compiler-plugin</artifactId> <autoPublish>true</autoPublish>
<configuration> </configuration>
<source>6</source> </plugin>
<target>6</target>
</configuration> </plugins>
</plugin> </build>
</plugins>
</build> </project>
</project>