|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>in.erail</groupId> |
6 | 6 | <artifactId>api-framework</artifactId> |
7 | | - <version>1.0-SNAPSHOT</version> |
| 7 | + <version>2.1</version> |
8 | 8 | <packaging>jar</packaging> |
| 9 | + <developers> |
| 10 | + <developer> |
| 11 | + <id>vinscom</id> |
| 12 | + <name>vinscom</name> |
| 13 | + </developer> |
| 14 | + </developers> |
| 15 | + <description> |
| 16 | + API Framework is structured code/pattern/project template for you to |
| 17 | + write API based system using Vertx Framework |
| 18 | + </description> |
| 19 | + <url>https://vinscom.github.io/api-framework-start/</url> |
| 20 | + <scm> |
| 21 | + <connection>scm:git:git@github.com:vinscom/api-framework.git</connection> |
| 22 | + <developerConnection>scm:git:git@github.com:vinscom/api-framework.git</developerConnection> |
| 23 | + <url>git@github.com:vinscom/api-framework.git</url> |
| 24 | + </scm> |
| 25 | + <licenses> |
| 26 | + <license> |
| 27 | + <name>The Apache Software License, Version 2.0</name> |
| 28 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 29 | + <distribution>repo</distribution> |
| 30 | + </license> |
| 31 | + </licenses> |
| 32 | + <profiles> |
| 33 | + <profile> |
| 34 | + <id>release</id> |
| 35 | + <build> |
| 36 | + <plugins> |
| 37 | + <plugin> |
| 38 | + <groupId>org.apache.maven.plugins</groupId> |
| 39 | + <artifactId>maven-source-plugin</artifactId> |
| 40 | + <version>2.4</version> |
| 41 | + <executions> |
| 42 | + <execution> |
| 43 | + <id>attach-sources</id> |
| 44 | + <goals> |
| 45 | + <goal>jar-no-fork</goal> |
| 46 | + </goals> |
| 47 | + </execution> |
| 48 | + </executions> |
| 49 | + </plugin> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 53 | + <version>2.10.4</version> |
| 54 | + <executions> |
| 55 | + <execution> |
| 56 | + <id>attach-javadocs</id> |
| 57 | + <goals> |
| 58 | + <goal>jar</goal> |
| 59 | + </goals> |
| 60 | + </execution> |
| 61 | + </executions> |
| 62 | + </plugin> |
| 63 | + <plugin> |
| 64 | + <groupId>org.apache.maven.plugins</groupId> |
| 65 | + <artifactId>maven-gpg-plugin</artifactId> |
| 66 | + <version>1.6</version> |
| 67 | + <executions> |
| 68 | + <execution> |
| 69 | + <id>sign-artifacts</id> |
| 70 | + <phase>verify</phase> |
| 71 | + <goals> |
| 72 | + <goal>sign</goal> |
| 73 | + </goals> |
| 74 | + </execution> |
| 75 | + </executions> |
| 76 | + </plugin> |
| 77 | + <plugin> |
| 78 | + <groupId>org.sonatype.plugins</groupId> |
| 79 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 80 | + <version>1.6.8</version> |
| 81 | + <extensions>true</extensions> |
| 82 | + <configuration> |
| 83 | + <serverId>ossrh</serverId> |
| 84 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 85 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 86 | + </configuration> |
| 87 | + </plugin> |
| 88 | + </plugins> |
| 89 | + </build> |
| 90 | + <distributionManagement> |
| 91 | + <snapshotRepository> |
| 92 | + <id>ossrh</id> |
| 93 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 94 | + </snapshotRepository> |
| 95 | + </distributionManagement> |
| 96 | + </profile> |
| 97 | + </profiles> |
9 | 98 | <properties> |
10 | 99 | <vertx-version>3.5.1</vertx-version> |
11 | 100 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
88 | 177 | <dependency> |
89 | 178 | <groupId>in.erail</groupId> |
90 | 179 | <artifactId>glue</artifactId> |
91 | | - <version>1.0-SNAPSHOT</version> |
| 180 | + <version>2.1</version> |
92 | 181 | </dependency> |
93 | 182 | <dependency> |
94 | 183 | <groupId>org.mockito</groupId> |
|
0 commit comments