|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>io.rocketbase.asset</groupId> |
6 | 6 | <artifactId>imgproxy</artifactId> |
7 | | - <version>0.0.1-SNAPSHOT</version> |
| 7 | + <version>LATEST-SNAPSHOT</version> |
| 8 | + |
8 | 9 | <name>imgproxy</name> |
9 | | - <description>URL Generator for imgproxy</description> |
| 10 | + <description>fluently generate asset urls for img-proxy within java</description> |
| 11 | + <url>https://github.com/rocketbase-io/imgproxy-java/</url> |
| 12 | + <inceptionYear>2019</inceptionYear> |
| 13 | + |
| 14 | + <licenses> |
| 15 | + <license> |
| 16 | + <name>MIT License</name> |
| 17 | + <url>https://opensource.org/licenses/MIT</url> |
| 18 | + </license> |
| 19 | + </licenses> |
| 20 | + |
| 21 | + <issueManagement> |
| 22 | + <system>github</system> |
| 23 | + <url>https://github.com/rocketbase-io/imgproxy-java/issues</url> |
| 24 | + </issueManagement> |
| 25 | + |
| 26 | + <scm> |
| 27 | + <connection>scm:git:git://github.com/rocketbase-io/imgproxy-java.git</connection> |
| 28 | + < developerConnection>scm:git: [email protected]:rocketbase-io/imgproxy-java.git</ developerConnection> |
| 29 | + <url>https://github.com/rocketbase-io/imgproxy-java/tree/master/</url> |
| 30 | + </scm> |
| 31 | + |
| 32 | + <developers> |
| 33 | + <developer> |
| 34 | + <name>Niels Schelbach</name> |
| 35 | + <id>captainnilo</id> |
| 36 | + |
| 37 | + <organization>rocketbase.io software productions GmbH</organization> |
| 38 | + </developer> |
| 39 | + <developer> |
| 40 | + <name>Marten Prieß</name> |
| 41 | + <id>melistik</id> |
| 42 | + |
| 43 | + <organization>rocketbase.io software productions GmbH</organization> |
| 44 | + </developer> |
| 45 | + </developers> |
| 46 | + |
| 47 | + <distributionManagement> |
| 48 | + <snapshotRepository> |
| 49 | + <id>ossrh</id> |
| 50 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 51 | + </snapshotRepository> |
| 52 | + <repository> |
| 53 | + <id>ossrh</id> |
| 54 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 55 | + </repository> |
| 56 | + </distributionManagement> |
| 57 | + |
10 | 58 |
|
11 | 59 | <properties> |
12 | 60 | <java.version>1.8</java.version> |
|
15 | 63 | <maven.compiler.source>1.8</maven.compiler.source> |
16 | 64 | <maven.compiler.target>1.8</maven.compiler.target> |
17 | 65 | <maven.javadoc.failOnError>false</maven.javadoc.failOnError> |
| 66 | + |
| 67 | + <guava.version>28.1-jre</guava.version> |
| 68 | + <lombok.version>1.18.10</lombok.version> |
| 69 | + <junit.version>4.12</junit.version> |
18 | 70 | </properties> |
19 | 71 |
|
20 | 72 | <dependencies> |
21 | 73 | <dependency> |
22 | 74 | <groupId>com.google.guava</groupId> |
23 | 75 | <artifactId>guava</artifactId> |
24 | | - <version>28.1-jre</version> |
| 76 | + <version>${guava.version}</version> |
25 | 77 | </dependency> |
26 | 78 | <dependency> |
27 | 79 | <groupId>org.projectlombok</groupId> |
28 | 80 | <artifactId>lombok</artifactId> |
29 | | - <version>1.18.10</version> |
| 81 | + <version>${lombok.version}</version> |
30 | 82 | <scope>provided</scope> |
31 | 83 | </dependency> |
32 | 84 | <dependency> |
33 | 85 | <groupId>junit</groupId> |
34 | 86 | <artifactId>junit</artifactId> |
35 | | - <version>4.12</version> |
| 87 | + <version>${junit.version}</version> |
36 | 88 | <scope>test</scope> |
37 | 89 | </dependency> |
38 | 90 | </dependencies> |
39 | 91 |
|
| 92 | + <profiles> |
| 93 | + <profile> |
| 94 | + <id>release</id> |
| 95 | + <build> |
| 96 | + <plugins> |
| 97 | + <plugin> |
| 98 | + <groupId>org.sonatype.plugins</groupId> |
| 99 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 100 | + <version>1.6.8</version> |
| 101 | + <extensions>true</extensions> |
| 102 | + <configuration> |
| 103 | + <serverId>ossrh</serverId> |
| 104 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 105 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 106 | + </configuration> |
| 107 | + </plugin> |
| 108 | + <plugin> |
| 109 | + <groupId>org.apache.maven.plugins</groupId> |
| 110 | + <artifactId>maven-source-plugin</artifactId> |
| 111 | + <version>3.0.1</version> |
| 112 | + <executions> |
| 113 | + <execution> |
| 114 | + <id>attach-sources</id> |
| 115 | + <goals> |
| 116 | + <goal>jar-no-fork</goal> |
| 117 | + </goals> |
| 118 | + </execution> |
| 119 | + </executions> |
| 120 | + </plugin> |
| 121 | + <plugin> |
| 122 | + <groupId>org.apache.maven.plugins</groupId> |
| 123 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 124 | + <version>3.0.0</version> |
| 125 | + <executions> |
| 126 | + <execution> |
| 127 | + <id>attach-javadocs</id> |
| 128 | + <goals> |
| 129 | + <goal>jar</goal> |
| 130 | + </goals> |
| 131 | + <configuration> |
| 132 | + <doclint>none</doclint> |
| 133 | + </configuration> |
| 134 | + </execution> |
| 135 | + </executions> |
| 136 | + </plugin> |
| 137 | + <plugin> |
| 138 | + <groupId>org.apache.maven.plugins</groupId> |
| 139 | + <artifactId>maven-gpg-plugin</artifactId> |
| 140 | + <version>1.6</version> |
| 141 | + <executions> |
| 142 | + <execution> |
| 143 | + <id>sign-artifacts</id> |
| 144 | + <phase>verify</phase> |
| 145 | + <goals> |
| 146 | + <goal>sign</goal> |
| 147 | + </goals> |
| 148 | + </execution> |
| 149 | + </executions> |
| 150 | + </plugin> |
| 151 | + </plugins> |
| 152 | + </build> |
| 153 | + </profile> |
| 154 | + </profiles> |
| 155 | + |
40 | 156 | </project> |
0 commit comments