|
4 | 4 |
|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>edu.self.nyg</groupId> |
| 7 | + <groupId>dev.andstuff.kraken</groupId> |
8 | 8 | <artifactId>kraken-api-parent</artifactId> |
9 | | - <version>1.0.0-SNAPSHOT</version> |
| 9 | + <version>0.1.0-SNAPSHOT</version> |
10 | 10 | <packaging>pom</packaging> |
11 | 11 |
|
12 | | - <properties> |
13 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 | | - <maven.compiler.release>21</maven.compiler.release> |
| 12 | + <name>Java Kraken API Client</name> |
| 13 | + <description>A Kraken.com API client written in Java</description> |
| 14 | + <url>https://github.com/nyg/kraken-api-java</url> |
| 15 | + <inceptionYear>2015</inceptionYear> |
15 | 16 |
|
16 | | - <!-- Third-party dependencies --> |
17 | | - <lombok.version>1.18.28</lombok.version> |
18 | | - </properties> |
| 17 | + <licenses> |
| 18 | + <license> |
| 19 | + <name>ISC License</name> |
| 20 | + <url>https://github.com/nyg/kraken-api-java/blob/master/LICENSE</url> |
| 21 | + <distribution>repo</distribution> |
| 22 | + </license> |
| 23 | + </licenses> |
| 24 | + |
| 25 | + <developers> |
| 26 | + <developer> |
| 27 | + <name>nyg</name> |
| 28 | + <url>https://github.com/nyg</url> |
| 29 | + </developer> |
| 30 | + </developers> |
19 | 31 |
|
20 | 32 | <modules> |
21 | 33 | <module>library</module> |
22 | 34 | <module>examples</module> |
23 | 35 | </modules> |
24 | 36 |
|
| 37 | + <scm> |
| 38 | + <url>https://github.com/nyg/kraken-api-java</url> |
| 39 | + <connection>scm:git:https://github.com/nyg/kraken-api-java.git</connection> |
| 40 | + < developerConnection>scm:git:ssh:// [email protected]/nyg/kraken-api-java.git</ developerConnection> |
| 41 | + <tag>HEAD</tag> |
| 42 | + </scm> |
| 43 | + |
| 44 | + <issueManagement> |
| 45 | + <url>https://github.com/nyg/kraken-api-java/issues</url> |
| 46 | + <system>GitHub Issues</system> |
| 47 | + </issueManagement> |
| 48 | + |
| 49 | + <properties> |
| 50 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 51 | + <maven.compiler.release>21</maven.compiler.release> |
| 52 | + |
| 53 | + <!-- Third-party dependencies --> |
| 54 | + <lombok.version>1.18.30</lombok.version> |
| 55 | + |
| 56 | + <!-- Maven plugins --> |
| 57 | + <maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version> |
| 58 | + <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> |
| 59 | + <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> |
| 60 | + <maven-release-plugin.version>3.0.1</maven-release-plugin.version> |
| 61 | + <maven-source-plugin.version>3.3.0</maven-source-plugin.version> |
| 62 | + |
| 63 | + <!-- Third-party plugins --> |
| 64 | + <central-publishing-maven-plugin.version>0.2.0</central-publishing-maven-plugin.version> |
| 65 | + <exec-maven-plugin.version>3.1.1</exec-maven-plugin.version> |
| 66 | + </properties> |
| 67 | + |
25 | 68 | <dependencyManagement> |
26 | 69 | <dependencies> |
27 | 70 | <dependency> |
|
33 | 76 | </dependencies> |
34 | 77 | </dependencyManagement> |
35 | 78 |
|
| 79 | + <build> |
| 80 | + <plugins> |
| 81 | + <plugin> |
| 82 | + <groupId>org.codehaus.mojo</groupId> |
| 83 | + <artifactId>exec-maven-plugin</artifactId> |
| 84 | + <version>${exec-maven-plugin.version}</version> |
| 85 | + <configuration> |
| 86 | + <executable>./changelog.sh</executable> |
| 87 | + </configuration> |
| 88 | + </plugin> |
| 89 | + <plugin> |
| 90 | + <groupId>org.apache.maven.plugins</groupId> |
| 91 | + <artifactId>maven-release-plugin</artifactId> |
| 92 | + <version>${maven-release-plugin.version}</version> |
| 93 | + <configuration> |
| 94 | + <!-- release:prepare --> |
| 95 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 96 | + <tagNameFormat>v@{version}</tagNameFormat> |
| 97 | + <signTag>true</signTag> |
| 98 | + <preparationGoals>clean verify exec:exec</preparationGoals> |
| 99 | + <pushChanges>false</pushChanges> |
| 100 | + <!-- release:perform --> |
| 101 | + <releaseProfiles>maven-central</releaseProfiles> |
| 102 | + </configuration> |
| 103 | + </plugin> |
| 104 | + </plugins> |
| 105 | + </build> |
| 106 | + |
| 107 | + <profiles> |
| 108 | + <profile> |
| 109 | + <id>maven-central</id> |
| 110 | + <build> |
| 111 | + <plugins> |
| 112 | + <plugin> |
| 113 | + <groupId>org.apache.maven.plugins</groupId> |
| 114 | + <artifactId>maven-source-plugin</artifactId> |
| 115 | + <version>${maven-source-plugin.version}</version> |
| 116 | + <executions> |
| 117 | + <execution> |
| 118 | + <id>attach-sources</id> |
| 119 | + <goals> |
| 120 | + <goal>jar-no-fork</goal> |
| 121 | + </goals> |
| 122 | + </execution> |
| 123 | + </executions> |
| 124 | + </plugin> |
| 125 | + <plugin> |
| 126 | + <groupId>org.apache.maven.plugins</groupId> |
| 127 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 128 | + <version>${maven-javadoc-plugin.version}</version> |
| 129 | + <executions> |
| 130 | + <execution> |
| 131 | + <id>attach-javadocs</id> |
| 132 | + <goals> |
| 133 | + <goal>jar</goal> |
| 134 | + </goals> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + <plugin> |
| 139 | + <groupId>org.apache.maven.plugins</groupId> |
| 140 | + <artifactId>maven-gpg-plugin</artifactId> |
| 141 | + <version>${maven-gpg-plugin.version}</version> |
| 142 | + <executions> |
| 143 | + <execution> |
| 144 | + <id>sign-artifacts</id> |
| 145 | + <goals> |
| 146 | + <goal>sign</goal> |
| 147 | + </goals> |
| 148 | + </execution> |
| 149 | + </executions> |
| 150 | + <configuration> |
| 151 | + <keyname>F8E60A60EB7F12AA</keyname> |
| 152 | + </configuration> |
| 153 | + </plugin> |
| 154 | + <plugin> |
| 155 | + <groupId>org.sonatype.central</groupId> |
| 156 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 157 | + <version>${central-publishing-maven-plugin.version}</version> |
| 158 | + <extensions>true</extensions> |
| 159 | + <configuration> |
| 160 | + <publishingServerId>central</publishingServerId> |
| 161 | + <tokenEnabled>true</tokenEnabled> |
| 162 | + <excludeArtifacts> |
| 163 | + <artifact>kraken-api-examples</artifact> |
| 164 | + </excludeArtifacts> |
| 165 | + </configuration> |
| 166 | + </plugin> |
| 167 | + </plugins> |
| 168 | + </build> |
| 169 | + </profile> |
| 170 | + </profiles> |
| 171 | + |
36 | 172 | </project> |
0 commit comments