Skip to content

Commit 764c616

Browse files
committed
Publish to Maven central
1 parent 8ffcf70 commit 764c616

File tree

1 file changed

+73
-3
lines changed

1 file changed

+73
-3
lines changed

pom.xml

+73-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,33 @@
11
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
22
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>
4-
<groupId>loophole.mvc</groupId>
4+
<groupId>io.bastillion</groupId>
55
<artifactId>lmvc</artifactId>
6-
<version>1.09.01</version>
6+
<version>1.10.00</version>
77
<packaging>jar</packaging>
8-
<name>lmvc</name>
8+
<name>Loophole MVC</name>
9+
<description>Loophole - Model-View-Controller Framework</description>
10+
<url>https://github.com/bastillion-io/lmvc</url>
11+
<licenses>
12+
<license>
13+
<name>The Prosperity Public License 3.0.0</name>
14+
<url>https://prosperitylicense.com/versions/3.0.0.html</url>
15+
<distribution>repo</distribution>
16+
</license>
17+
</licenses>
18+
<developers>
19+
<developer>
20+
<name>Sean Kavanagh</name>
21+
<email>[email protected]</email>
22+
<organization>Loophole, LLC</organization>
23+
<organizationUrl>https://www.bastillion.io</organizationUrl>
24+
</developer>
25+
</developers>
26+
<scm>
27+
<connection>scm:git:git://github.com:bastillion-io/lmvc.git</connection>
28+
<developerConnection>scm:git:ssh://github.com:bastillion-io/lmvc.git</developerConnection>
29+
<url>https://github.com/bastillion-io/lmvc/tree/master</url>
30+
</scm>
931
<properties>
1032
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1133
<maven.compiler.source>1.9</maven.compiler.source>
@@ -52,8 +74,56 @@
5274
<scope>provided</scope>
5375
</dependency>
5476
</dependencies>
77+
<distributionManagement>
78+
<snapshotRepository>
79+
<id>ossrh</id>
80+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
81+
</snapshotRepository>
82+
</distributionManagement>
5583
<build>
5684
<plugins>
85+
<plugin>
86+
<groupId>org.apache.maven.plugins</groupId>
87+
<artifactId>maven-gpg-plugin</artifactId>
88+
<version>1.5</version>
89+
<executions>
90+
<execution>
91+
<id>sign-artifacts</id>
92+
<phase>verify</phase>
93+
<goals>
94+
<goal>sign</goal>
95+
</goals>
96+
<configuration>
97+
<keyname>0x709C1D65</keyname>
98+
<passphraseServerId>0x709C1D65</passphraseServerId>
99+
</configuration>
100+
</execution>
101+
</executions>
102+
</plugin>
103+
<plugin>
104+
<groupId>org.sonatype.plugins</groupId>
105+
<artifactId>nexus-staging-maven-plugin</artifactId>
106+
<version>1.6.7</version>
107+
<extensions>true</extensions>
108+
<configuration>
109+
<serverId>ossrh</serverId>
110+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
111+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
112+
</configuration>
113+
</plugin>
114+
<plugin>
115+
<groupId>org.apache.maven.plugins</groupId>
116+
<artifactId>maven-javadoc-plugin</artifactId>
117+
<version>3.3.1</version>
118+
<executions>
119+
<execution>
120+
<id>attach-javadoc</id>
121+
<goals>
122+
<goal>jar</goal>
123+
</goals>
124+
</execution>
125+
</executions>
126+
</plugin>
57127
<plugin>
58128
<artifactId>maven-assembly-plugin</artifactId>
59129
<version>3.3.0</version>

0 commit comments

Comments
 (0)