Skip to content
This repository was archived by the owner on Jan 8, 2023. It is now read-only.

Commit 270cf41

Browse files
committed
Release preparations
1 parent dbb7cfe commit 270cf41

File tree

1 file changed

+69
-2
lines changed

1 file changed

+69
-2
lines changed

pom.xml

Lines changed: 69 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,46 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>io.github.spair</groupId>
66
<artifactId>byond-dmi-util</artifactId>
77
<version>1.0-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

10+
<name>${project.groupId}:${project.artifactId}</name>
11+
<description>Small set of util classes to work with BYOND dmi files.</description>
12+
<url>https://spair.github.io/byond-dmi-util</url>
13+
14+
<licenses>
15+
<license>
16+
<name>MIT License</name>
17+
<url>http://www.opensource.org/licenses/mit-license.php</url>
18+
</license>
19+
</licenses>
20+
21+
<developers>
22+
<developer>
23+
<id>SpaiR</id>
24+
<name>Ilya Prymshyts</name>
25+
<email>[email protected]</email>
26+
</developer>
27+
</developers>
28+
29+
<scm>
30+
<connection>scm:git:https://github.com/SpaiR/byond-dmi-util.git</connection>
31+
<developerConnection>scm:git:https://github.com/SpaiR/byond-dmi-util.git</developerConnection>
32+
<url>https://github.com/SpaiR/byond-dmi-util/tree/master</url>
33+
<tag>HEAD</tag>
34+
</scm>
35+
36+
<distributionManagement>
37+
<repository>
38+
<id>bintray-spair-io.github.spair</id>
39+
<name>SpaiR-io.github.spair</name>
40+
<url>https://api.bintray.com/maven/spair/io.github.spair/byond-dmi-util/;publish=1</url>
41+
</repository>
42+
</distributionManagement>
43+
1044
<properties>
1145
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1246
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -75,6 +109,39 @@
75109
<sourceFileExclude>io/github/spair/byond/dmi/StateExtractor.java</sourceFileExclude>
76110
</sourceFileExcludes>
77111
</configuration>
112+
<executions>
113+
<execution>
114+
<id>attach-javadocs</id>
115+
<goals>
116+
<goal>jar</goal>
117+
</goals>
118+
</execution>
119+
</executions>
120+
</plugin>
121+
<plugin>
122+
<groupId>org.apache.maven.plugins</groupId>
123+
<artifactId>maven-source-plugin</artifactId>
124+
<version>3.0.1</version>
125+
<executions>
126+
<execution>
127+
<id>attach-sources</id>
128+
<goals>
129+
<goal>jar</goal>
130+
</goals>
131+
</execution>
132+
</executions>
133+
</plugin>
134+
<plugin>
135+
<groupId>org.apache.maven.plugins</groupId>
136+
<artifactId>maven-release-plugin</artifactId>
137+
<version>2.5.2</version>
138+
<configuration>
139+
<tagBase>git://github.com/SpaiR/byond-dmi-util/tags</tagBase>
140+
<branchBase>git://github.com/SpaiR/byond-dmi-util/branches</branchBase>
141+
<preparationGoals>clean package</preparationGoals>
142+
<goals>deploy</goals>
143+
<autoVersionSubmodules>true</autoVersionSubmodules>
144+
</configuration>
78145
</plugin>
79146
</plugins>
80147
</build>

0 commit comments

Comments
 (0)