|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 |
|
7 |
| - <groupId>JavaUltimateTools</groupId> |
8 |
| - <artifactId>JavaUltimateTools</artifactId> |
9 |
| - <version>1.3</version> |
| 7 | + <groupId>com.jgcomptech.tools</groupId> |
| 8 | + <artifactId>java-ultimate-tools</artifactId> |
| 9 | + <version>1.3.0</version> |
| 10 | + <packaging>jar</packaging> |
| 11 | + |
| 12 | + <properties> |
| 13 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 14 | + </properties> |
| 15 | + |
| 16 | + <name>${project.groupId}:${project.artifactId}</name> |
| 17 | + <description>A large repository of scripts for use in any Java program..</description> |
| 18 | + <url>https://github.com/JGCompTech/JavaUltimateTools</url> |
| 19 | + |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>Creative Commons Attribution 4.0 International</name> |
| 23 | + <url>https://creativecommons.org/licenses/by/4.0/legalcode.txt</url> |
| 24 | + </license> |
| 25 | + </licenses> |
| 26 | + |
| 27 | + <developers> |
| 28 | + <developer> |
| 29 | + <name>Joshua Gager</name> |
| 30 | + |
| 31 | + <organization>J&G CompTech</organization> |
| 32 | + <organizationUrl>https://github.com/JGCompTech</organizationUrl> |
| 33 | + </developer> |
| 34 | + </developers> |
| 35 | + |
| 36 | + <scm> |
| 37 | + <connection>scm:git:git://github.com/JGCompTech/JavaUltimateTools.git</connection> |
| 38 | + <developerConnection>scm:git:ssh://github.com/JGCompTech/JavaUltimateTools.git</developerConnection> |
| 39 | + <url>https://github.com/JGCompTech/JavaUltimateTools/tree/master</url> |
| 40 | + </scm> |
| 41 | + |
| 42 | + <distributionManagement> |
| 43 | + <snapshotRepository> |
| 44 | + <id>ossrh</id> |
| 45 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 46 | + </snapshotRepository> |
| 47 | + <repository> |
| 48 | + <id>ossrh</id> |
| 49 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 50 | + </repository> |
| 51 | + </distributionManagement> |
| 52 | + |
10 | 53 | <build>
|
11 | 54 | <plugins>
|
| 55 | + <plugin> |
| 56 | + <groupId>org.sonatype.plugins</groupId> |
| 57 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 58 | + <version>1.6.8</version> |
| 59 | + <extensions>true</extensions> |
| 60 | + <configuration> |
| 61 | + <serverId>ossrh</serverId> |
| 62 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 63 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 64 | + </configuration> |
| 65 | + </plugin> |
| 66 | + <plugin> |
| 67 | + <groupId>org.apache.maven.plugins</groupId> |
| 68 | + <artifactId>maven-source-plugin</artifactId> |
| 69 | + <version>3.0.1</version> |
| 70 | + <executions> |
| 71 | + <execution> |
| 72 | + <id>attach-sources</id> |
| 73 | + <goals> |
| 74 | + <goal>jar-no-fork</goal> |
| 75 | + </goals> |
| 76 | + </execution> |
| 77 | + </executions> |
| 78 | + </plugin> |
| 79 | + <plugin> |
| 80 | + <groupId>org.apache.maven.plugins</groupId> |
| 81 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 82 | + <version>2.10.4</version> |
| 83 | + <executions> |
| 84 | + <execution> |
| 85 | + <id>attach-javadocs</id> |
| 86 | + <goals> |
| 87 | + <goal>jar</goal> |
| 88 | + </goals> |
| 89 | + </execution> |
| 90 | + </executions> |
| 91 | + </plugin> |
| 92 | + <plugin> |
| 93 | + <groupId>org.apache.maven.plugins</groupId> |
| 94 | + <artifactId>maven-release-plugin</artifactId> |
| 95 | + <version>2.5.3</version> |
| 96 | + <configuration> |
| 97 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 98 | + <useReleaseProfile>false</useReleaseProfile> |
| 99 | + <releaseProfiles>release</releaseProfiles> |
| 100 | + <goals>deploy</goals> |
| 101 | + </configuration> |
| 102 | + </plugin> |
| 103 | + <plugin> |
| 104 | + <groupId>org.apache.maven.plugins</groupId> |
| 105 | + <artifactId>maven-gpg-plugin</artifactId> |
| 106 | + <version>1.6</version> |
| 107 | + <executions> |
| 108 | + <execution> |
| 109 | + <id>sign-artifacts</id> |
| 110 | + <phase>verify</phase> |
| 111 | + <goals> |
| 112 | + <goal>sign</goal> |
| 113 | + </goals> |
| 114 | + </execution> |
| 115 | + </executions> |
| 116 | + </plugin> |
| 117 | + <plugin> |
| 118 | + <groupId>com.versioneye</groupId> |
| 119 | + <artifactId>versioneye-maven-plugin</artifactId> |
| 120 | + <version>3.11.2</version> |
| 121 | + </plugin> |
12 | 122 | <plugin>
|
13 | 123 | <groupId>org.apache.maven.plugins</groupId>
|
14 | 124 | <artifactId>maven-compiler-plugin</artifactId>
|
|
53 | 163 | </plugin>
|
54 | 164 | </plugins>
|
55 | 165 | </build>
|
| 166 | + |
56 | 167 | <dependencies>
|
| 168 | + <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> |
57 | 169 | <dependency>
|
58 | 170 | <groupId>org.apache.commons</groupId>
|
59 | 171 | <artifactId>commons-lang3</artifactId>
|
60 | 172 | <version>RELEASE</version>
|
61 | 173 | </dependency>
|
| 174 | + <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna-platform --> |
62 | 175 | <dependency>
|
63 | 176 | <groupId>net.java.dev.jna</groupId>
|
64 | 177 | <artifactId>jna-platform</artifactId>
|
65 | 178 | <version>RELEASE</version>
|
66 | 179 | </dependency>
|
| 180 | + <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna --> |
67 | 181 | <dependency>
|
68 | 182 | <groupId>net.java.dev.jna</groupId>
|
69 | 183 | <artifactId>jna</artifactId>
|
70 | 184 | <version>RELEASE</version>
|
71 | 185 | </dependency>
|
| 186 | + <!-- https://mvnrepository.com/artifact/junit/junit --> |
72 | 187 | <dependency>
|
73 | 188 | <groupId>junit</groupId>
|
74 | 189 | <artifactId>junit</artifactId>
|
75 | 190 | <version>RELEASE</version>
|
76 | 191 | </dependency>
|
| 192 | + <!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc --> |
77 | 193 | <dependency>
|
78 | 194 | <groupId>org.xerial</groupId>
|
79 | 195 | <artifactId>sqlite-jdbc</artifactId>
|
|
0 commit comments