Skip to content

Commit b6784ac

Browse files
committed
[maven-release-plugin] prepare release archipelago-client-0.1.20
1 parent 51ed3aa commit b6784ac

File tree

2 files changed

+165
-5
lines changed

2 files changed

+165
-5
lines changed

pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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/xsd/maven-4.0.0.xsd">
53
<modelVersion>4.0.0</modelVersion>
64

75
<groupId>dev.koifysh</groupId>
86
<artifactId>archipelago-client</artifactId>
9-
<version>0.1.20-SNAPSHOT</version>
7+
<version>0.1.20</version>
108

119
<name>Archipelago Java Library</name>
1210
<description>Library to connect to an Archipelago Server</description>
@@ -24,7 +22,8 @@
2422
<connection>git://github.com/ArchipelagoMW/Java-Client</connection>
2523
<developerConnection>git:https://github.com/ArchipelagoMW/Java-Client.git</developerConnection>
2624
<url>https://github.com/ArchipelagoMW/Java-Client</url>
27-
</scm>
25+
<tag>archipelago-client-0.1.20</tag>
26+
</scm>
2827

2928
<developers>
3029
<developer>

release-pom.xml

Lines changed: 161 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,161 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>dev.koifysh</groupId>
6+
<artifactId>archipelago-client</artifactId>
7+
<version>0.1.20</version>
8+
<name>Archipelago Java Library</name>
9+
<description>Library to connect to an Archipelago Server</description>
10+
<url>https://github.com/ArchipelagoMW/Java-Client</url>
11+
<licenses>
12+
<license>
13+
<name>MIT License</name>
14+
<url>https://github.com/ArchipelagoMW/Java-Client/blob/main/LICENSE</url>
15+
<distribution>repo</distribution>
16+
</license>
17+
</licenses>
18+
<developers>
19+
<developer>
20+
<name>Kono Tyran</name>
21+
<email>[email protected]</email>
22+
</developer>
23+
</developers>
24+
<scm>
25+
<connection>git://github.com/ArchipelagoMW/Java-Client</connection>
26+
<developerConnection>git:https://github.com/ArchipelagoMW/Java-Client.git</developerConnection>
27+
<url>https://github.com/ArchipelagoMW/Java-Client</url>
28+
</scm>
29+
<properties>
30+
<maven.compiler.target>8</maven.compiler.target>
31+
<maven.compiler.source>8</maven.compiler.source>
32+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33+
</properties>
34+
<dependencies>
35+
<dependency>
36+
<groupId>com.google.code.gson</groupId>
37+
<artifactId>gson</artifactId>
38+
<version>2.11.0</version>
39+
<scope>compile</scope>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.apache.httpcomponents.client5</groupId>
43+
<artifactId>httpclient5</artifactId>
44+
<version>5.2.1</version>
45+
<scope>compile</scope>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.apache.httpcomponents.core5</groupId>
49+
<artifactId>httpcore5</artifactId>
50+
<version>5.2.5</version>
51+
<scope>compile</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.java-websocket</groupId>
55+
<artifactId>Java-WebSocket</artifactId>
56+
<version>1.5.7</version>
57+
<scope>compile</scope>
58+
</dependency>
59+
</dependencies>
60+
<repositories>
61+
<repository>
62+
<snapshots>
63+
<enabled>false</enabled>
64+
</snapshots>
65+
<id>central</id>
66+
<name>Central Repository</name>
67+
<url>https://repo.maven.apache.org/maven2</url>
68+
</repository>
69+
</repositories>
70+
<pluginRepositories>
71+
<pluginRepository>
72+
<releases>
73+
<updatePolicy>never</updatePolicy>
74+
</releases>
75+
<snapshots>
76+
<enabled>false</enabled>
77+
</snapshots>
78+
<id>central</id>
79+
<name>Central Repository</name>
80+
<url>https://repo.maven.apache.org/maven2</url>
81+
</pluginRepository>
82+
</pluginRepositories>
83+
<build>
84+
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
85+
<scriptSourceDirectory>${project.basedir}/src/main/scripts</scriptSourceDirectory>
86+
<testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>
87+
<outputDirectory>${project.build.directory}/classes</outputDirectory>
88+
<testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
89+
<resources>
90+
<resource>
91+
<directory>${project.basedir}/src/main/resources</directory>
92+
</resource>
93+
</resources>
94+
<testResources>
95+
<testResource>
96+
<directory>${project.basedir}/src/test/resources</directory>
97+
</testResource>
98+
</testResources>
99+
<directory>${project.basedir}/target</directory>
100+
<finalName>archipelago-client-0.1.20</finalName>
101+
<plugins>
102+
<plugin>
103+
<artifactId>maven-release-plugin</artifactId>
104+
<version>3.1.1</version>
105+
</plugin>
106+
<plugin>
107+
<artifactId>maven-source-plugin</artifactId>
108+
<version>2.2.1</version>
109+
<executions>
110+
<execution>
111+
<id>attach-sources</id>
112+
<goals>
113+
<goal>jar-no-fork</goal>
114+
</goals>
115+
</execution>
116+
</executions>
117+
</plugin>
118+
<plugin>
119+
<artifactId>maven-javadoc-plugin</artifactId>
120+
<version>3.8.0</version>
121+
<executions>
122+
<execution>
123+
<id>attach-javadocs</id>
124+
<goals>
125+
<goal>jar</goal>
126+
</goals>
127+
</execution>
128+
</executions>
129+
<configuration>
130+
<doclint>none</doclint>
131+
</configuration>
132+
</plugin>
133+
<plugin>
134+
<artifactId>maven-gpg-plugin</artifactId>
135+
<version>3.2.4</version>
136+
<executions>
137+
<execution>
138+
<id>sign-artifacts</id>
139+
<phase>verify</phase>
140+
<goals>
141+
<goal>sign</goal>
142+
</goals>
143+
</execution>
144+
</executions>
145+
</plugin>
146+
<plugin>
147+
<groupId>org.sonatype.central</groupId>
148+
<artifactId>central-publishing-maven-plugin</artifactId>
149+
<version>0.4.0</version>
150+
<extensions>true</extensions>
151+
<configuration>
152+
<publishingServerId>central</publishingServerId>
153+
<tokenAuth>true</tokenAuth>
154+
</configuration>
155+
</plugin>
156+
</plugins>
157+
</build>
158+
<reporting>
159+
<outputDirectory>${project.build.directory}/site</outputDirectory>
160+
</reporting>
161+
</project>

0 commit comments

Comments
 (0)