|
1 | 1 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 |
| - <groupId>loophole.mvc</groupId> |
| 4 | + <groupId>io.bastillion</groupId> |
5 | 5 | <artifactId>lmvc</artifactId>
|
6 |
| - <version>1.09.01</version> |
| 6 | + <version>1.10.00</version> |
7 | 7 | <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 | + |
| 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> |
9 | 31 | <properties>
|
10 | 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
11 | 33 | <maven.compiler.source>1.9</maven.compiler.source>
|
|
52 | 74 | <scope>provided</scope>
|
53 | 75 | </dependency>
|
54 | 76 | </dependencies>
|
| 77 | + <distributionManagement> |
| 78 | + <snapshotRepository> |
| 79 | + <id>ossrh</id> |
| 80 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 81 | + </snapshotRepository> |
| 82 | + </distributionManagement> |
55 | 83 | <build>
|
56 | 84 | <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> |
57 | 127 | <plugin>
|
58 | 128 | <artifactId>maven-assembly-plugin</artifactId>
|
59 | 129 | <version>3.3.0</version>
|
|
0 commit comments