Skip to content

Commit 95f0978

Browse files
committed
Added java 25 pom.xml
1 parent 59740a1 commit 95f0978

File tree

1 file changed

+184
-0
lines changed

1 file changed

+184
-0
lines changed

pom-central25.xml

Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.github.javadev</groupId>
5+
<artifactId>underscore25</artifactId>
6+
<packaging>jar</packaging>
7+
<version>1.74</version>
8+
<name>java 25 port of Underscore.js</name>
9+
<description>The java 25 port of Underscore.js</description>
10+
<url>https://github.com/javadev/underscore-java17</url>
11+
<developers>
12+
<developer>
13+
<id>javadev</id>
14+
<name>Valentyn Kolesnikov</name>
15+
</developer>
16+
</developers>
17+
<licenses>
18+
<license>
19+
<name>The MIT License</name>
20+
<url>http://opensource.org/licenses/MIT</url>
21+
<distribution>repo</distribution>
22+
</license>
23+
</licenses>
24+
<scm>
25+
<connection>scm:git:git://github.com/javadev/underscore-java17.git</connection>
26+
<developerConnection>scm:git:git://github.com/javadev/underscore-java17.git</developerConnection>
27+
<url>https://github.com/javadev/underscore-java17</url>
28+
</scm>
29+
<properties>
30+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31+
</properties>
32+
<ciManagement>
33+
<system>GitHub Actions</system>
34+
<url>https://github.com/javadev/underscore-java17/actions</url>
35+
</ciManagement>
36+
<issueManagement>
37+
<system>GitHub Issues</system>
38+
<url>https://github.com/javadev/underscore-java17/issues</url>
39+
</issueManagement>
40+
<build>
41+
<plugins>
42+
<plugin>
43+
<groupId>org.apache.maven.plugins</groupId>
44+
<artifactId>maven-compiler-plugin</artifactId>
45+
<version>3.14.0</version>
46+
<configuration>
47+
<source>25</source>
48+
<target>25</target>
49+
<encoding>UTF-8</encoding>
50+
</configuration>
51+
</plugin>
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-surefire-plugin</artifactId>
55+
<version>3.2.5</version>
56+
<dependencies>
57+
<dependency>
58+
<groupId>org.junit.jupiter</groupId>
59+
<artifactId>junit-jupiter-engine</artifactId>
60+
<version>[5.13.3,)</version>
61+
</dependency>
62+
</dependencies>
63+
</plugin>
64+
<plugin>
65+
<groupId>org.apache.maven.plugins</groupId>
66+
<artifactId>maven-jar-plugin</artifactId>
67+
<version>3.4.0</version>
68+
<configuration>
69+
<archive>
70+
<manifestEntries>
71+
<Main-Class>com.github.underscore.Underscore</Main-Class>
72+
<Built-By></Built-By>
73+
<Created-By></Created-By>
74+
<Build-Jdk></Build-Jdk>
75+
</manifestEntries>
76+
</archive>
77+
</configuration>
78+
</plugin>
79+
<plugin>
80+
<groupId>org.apache.maven.plugins</groupId>
81+
<artifactId>maven-source-plugin</artifactId>
82+
<version>3.3.1</version>
83+
<executions>
84+
<execution>
85+
<id>attach-sources</id>
86+
<goals>
87+
<goal>jar</goal>
88+
<goal>test-jar</goal>
89+
</goals>
90+
</execution>
91+
</executions>
92+
</plugin>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-javadoc-plugin</artifactId>
96+
<version>3.6.3</version>
97+
<executions>
98+
<execution>
99+
<id>attach-sources</id>
100+
<goals>
101+
<goal>jar</goal>
102+
<goal>test-jar</goal>
103+
</goals>
104+
</execution>
105+
</executions>
106+
<configuration>
107+
<failOnError>false</failOnError>
108+
<useStandardDocletOptions>true</useStandardDocletOptions>
109+
<show>private</show>
110+
</configuration>
111+
</plugin>
112+
<plugin>
113+
<groupId>org.apache.maven.plugins</groupId>
114+
<artifactId>maven-gpg-plugin</artifactId>
115+
<version>3.2.4</version>
116+
<executions>
117+
<execution>
118+
<id>sign-artifacts</id>
119+
<phase>verify</phase>
120+
<goals>
121+
<goal>sign</goal>
122+
</goals>
123+
</execution>
124+
</executions>
125+
</plugin>
126+
<plugin>
127+
<groupId>org.apache.maven.plugins</groupId>
128+
<artifactId>maven-antrun-plugin</artifactId>
129+
<version>3.1.0</version>
130+
<executions>
131+
<execution>
132+
<id>generate-checksums</id>
133+
<phase>verify</phase>
134+
<configuration>
135+
<target>
136+
<checksum fileext=".md5" algorithm="MD5">
137+
<fileset dir="${project.build.directory}">
138+
<include name="*.jar"/>
139+
<include name="*.pom"/>
140+
</fileset>
141+
</checksum>
142+
<checksum fileext=".sha1" algorithm="SHA-1">
143+
<fileset dir="${project.build.directory}">
144+
<include name="*.jar"/>
145+
<include name="*.pom"/>
146+
</fileset>
147+
</checksum>
148+
</target>
149+
</configuration>
150+
<goals>
151+
<goal>run</goal>
152+
</goals>
153+
</execution>
154+
</executions>
155+
</plugin>
156+
</plugins>
157+
</build>
158+
<dependencies>
159+
<dependency>
160+
<groupId>org.junit.jupiter</groupId>
161+
<artifactId>junit-jupiter-api</artifactId>
162+
<version>[5.13.3,)</version>
163+
<scope>test</scope>
164+
</dependency>
165+
<dependency>
166+
<groupId>org.junit.jupiter</groupId>
167+
<artifactId>junit-jupiter-engine</artifactId>
168+
<version>[5.13.3,)</version>
169+
<scope>test</scope>
170+
</dependency>
171+
<dependency>
172+
<groupId>org.junit.platform</groupId>
173+
<artifactId>junit-platform-launcher</artifactId>
174+
<version>[1.13.3,)</version>
175+
<scope>test</scope>
176+
</dependency>
177+
<dependency>
178+
<groupId>org.awaitility</groupId>
179+
<artifactId>awaitility</artifactId>
180+
<version>[4.2.0,)</version>
181+
<scope>test</scope>
182+
</dependency>
183+
</dependencies>
184+
</project>

0 commit comments

Comments
 (0)