96 lines
		
	
	
		
			No EOL
		
	
	
		
			2.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			No EOL
		
	
	
		
			2.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
| 	<modelVersion>4.0.0</modelVersion>
 | |
|   	<groupId>eu.m724</groupId>
 | |
|   	<artifactId>jarupdater</artifactId>
 | |
|   	<version>0.3.0-SNAPSHOT</version>
 | |
| 
 | |
|   	<properties>
 | |
|     	<maven.compiler.release>17</maven.compiler.release>
 | |
| 
 | |
| 		<jarsigner.keystore>${project.basedir}/testkeystore.jks</jarsigner.keystore>
 | |
| 		<jarsigner.alias>testkey</jarsigner.alias>
 | |
| 		<jarsigner.storepass>123456</jarsigner.storepass>
 | |
| 	</properties>
 | |
| 
 | |
| 	<licenses>
 | |
| 		<license>
 | |
| 			<name>GPL-3.0-or-later</name>
 | |
| 			<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
 | |
| 			<distribution>repo</distribution>
 | |
| 			<comments>The GNU General Public License is a free, copyleft license.</comments>
 | |
| 		</license>
 | |
| 	</licenses>
 | |
|   	
 | |
|     <repositories>
 | |
| 		<repository>
 | |
| 	    	<id>m724</id>
 | |
| 	    	<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
 | |
| 	  	</repository>
 | |
| 	</repositories>
 | |
| 	
 | |
| 	<dependencies>
 | |
| 		<dependency>
 | |
| 	      <groupId>com.google.code.gson</groupId>
 | |
| 	      <artifactId>gson</artifactId>
 | |
| 	      <version>2.13.1</version>
 | |
| 	      <optional>true</optional> <!-- only for HttpMetadataDAO -->
 | |
| 	    </dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>junit</groupId>
 | |
| 			<artifactId>junit</artifactId>
 | |
| 		 	<version>4.13.2</version>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 	</dependencies>
 | |
|   
 | |
|   	<build>
 | |
| 		<plugins>
 | |
| 			<plugin>
 | |
| 	        	<groupId>org.apache.maven.plugins</groupId>
 | |
| 	        	<artifactId>maven-release-plugin</artifactId>
 | |
| 	        	<version>3.1.1</version>
 | |
| 	      	</plugin>
 | |
| 
 | |
| 			<plugin>
 | |
| 				<groupId>org.apache.maven.plugins</groupId>
 | |
| 				<artifactId>maven-jarsigner-plugin</artifactId>
 | |
| 				<version>3.1.0</version>
 | |
| 				<executions>
 | |
| 					<execution>
 | |
| 						<id>sign</id>
 | |
| 						<goals>
 | |
| 							<goal>sign</goal>
 | |
| 						</goals>
 | |
| 					</execution>
 | |
| 					<execution>
 | |
| 						<id>verify</id>
 | |
| 						<goals>
 | |
| 							<goal>verify</goal>
 | |
| 						</goals>
 | |
| 					</execution>
 | |
| 				</executions>
 | |
| 				<configuration>
 | |
| 					<keystore>${jarsigner.keystore}</keystore>
 | |
| 					<alias>${jarsigner.alias}</alias>
 | |
| 					<storepass>${jarsigner.storepass}</storepass>
 | |
| 					<tsa>http://time.certum.pl</tsa>
 | |
| 				</configuration>
 | |
| 			</plugin>
 | |
| 	    </plugins>
 | |
| 	</build>
 | |
| 	
 | |
| 	<distributionManagement>
 | |
| 		<repository>
 | |
| 			<id>m724</id>
 | |
| 			<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
 | |
| 		</repository>
 | |
| 		<snapshotRepository>
 | |
| 			<id>m724</id>
 | |
| 			<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
 | |
| 		</snapshotRepository>
 | |
| 	</distributionManagement>
 | |
| 	
 | |
| 	<scm>
 | |
| 		<developerConnection>scm:git:git@git.m724.eu:Minecon724/jarupdater.git</developerConnection>
 | |
|   	</scm>
 | |
| </project> | 
