|
6 | 6 | <artifactId>hap</artifactId> |
7 | 7 | <name>hap-java</name> |
8 | 8 | <description>Homekit Accessory Protocol for Java</description> |
9 | | - <version>0.0.1-SNAPSHOT</version> |
| 9 | + <version>1.0.0</version> |
| 10 | + <packaging>jar</packaging> |
| 11 | + <url>http://www.github.com/beowulfe/HAP-Java</url> |
| 12 | + |
| 13 | + <licenses> |
| 14 | + <license> |
| 15 | + <name>MIT License</name> |
| 16 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 17 | + <distribution>repo</distribution> |
| 18 | + </license> |
| 19 | + </licenses> |
| 20 | + |
| 21 | + <scm> |
| 22 | + <connection>scm:git:git@github.com:beowulfe/HAP-Java.git</connection> |
| 23 | + <developerConnection>scm:git:git@github.com:beowulfe/HAP-Java.git</developerConnection> |
| 24 | + <url>https://github.com/beowulfe/HAP-Java.git</url> |
| 25 | + </scm> |
| 26 | + |
| 27 | + <developers> |
| 28 | + <developer> |
| 29 | + <name>Andy Lintner</name> |
| 30 | + <email>dev@beowulfe.com</email> |
| 31 | + <url>https://github.com/beowulfe</url> |
| 32 | + </developer> |
| 33 | + </developers> |
| 34 | + |
10 | 35 | <dependencies> |
11 | 36 |
|
12 | 37 | <dependency> |
|
68 | 93 | <artifactId>commons-io</artifactId> |
69 | 94 | <version>2.4</version> |
70 | 95 | </dependency> |
71 | | - |
| 96 | + |
72 | 97 | <dependency> |
73 | 98 | <groupId>junit</groupId> |
74 | 99 | <artifactId>junit</artifactId> |
75 | 100 | <version>4.12</version> |
76 | 101 | <scope>test</scope> |
77 | 102 | </dependency> |
78 | | - |
| 103 | + |
79 | 104 | <dependency> |
80 | 105 | <groupId>org.mockito</groupId> |
81 | 106 | <artifactId>mockito-all</artifactId> |
|
96 | 121 | <target>1.8</target> |
97 | 122 | </configuration> |
98 | 123 | </plugin> |
| 124 | + <plugin> |
| 125 | + <groupId>org.apache.maven.plugins</groupId> |
| 126 | + <artifactId>maven-source-plugin</artifactId> |
| 127 | + <version>2.2.1</version> |
| 128 | + <executions> |
| 129 | + <execution> |
| 130 | + <id>attach-sources</id> |
| 131 | + <goals> |
| 132 | + <goal>jar-no-fork</goal> |
| 133 | + </goals> |
| 134 | + </execution> |
| 135 | + </executions> |
| 136 | + </plugin> |
99 | 137 | <plugin> |
100 | 138 | <groupId>org.apache.maven.plugins</groupId> |
101 | 139 | <artifactId>maven-javadoc-plugin</artifactId> |
102 | 140 | <version>2.10.1</version> |
103 | 141 | <configuration> |
104 | 142 | <excludePackageNames>com.beowulfe.hap.impl</excludePackageNames> |
105 | 143 | </configuration> |
| 144 | + <executions> |
| 145 | + <execution> |
| 146 | + <id>attach-javadocs</id> |
| 147 | + <goals> |
| 148 | + <goal>jar</goal> |
| 149 | + </goals> |
| 150 | + </execution> |
| 151 | + </executions> |
106 | 152 | </plugin> |
107 | 153 | <plugin> |
108 | 154 | <artifactId>maven-assembly-plugin</artifactId> |
|
122 | 168 | </execution> |
123 | 169 | </executions> |
124 | 170 | </plugin> |
| 171 | + <plugin> |
| 172 | + <groupId>org.apache.maven.plugins</groupId> |
| 173 | + <artifactId>maven-gpg-plugin</artifactId> |
| 174 | + <version>1.5</version> |
| 175 | + <executions> |
| 176 | + <execution> |
| 177 | + <id>sign-artifacts</id> |
| 178 | + <phase>verify</phase> |
| 179 | + <goals> |
| 180 | + <goal>sign</goal> |
| 181 | + </goals> |
| 182 | + </execution> |
| 183 | + </executions> |
| 184 | + </plugin> |
| 185 | + <plugin> |
| 186 | + <groupId>org.sonatype.plugins</groupId> |
| 187 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 188 | + <version>1.6.3</version> |
| 189 | + <extensions>true</extensions> |
| 190 | + <configuration> |
| 191 | + <serverId>ossrh</serverId> |
| 192 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 193 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 194 | + </configuration> |
| 195 | + </plugin> |
125 | 196 | </plugins> |
126 | 197 | </build> |
| 198 | + |
127 | 199 | <distributionManagement> |
128 | 200 | <site> |
129 | 201 | <id>website</id> |
130 | 202 | <url>https://github.com/beowulfe/hap-java</url> |
131 | 203 | </site> |
| 204 | + <snapshotRepository> |
| 205 | + <id>ossrh</id> |
| 206 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 207 | + </snapshotRepository> |
132 | 208 | </distributionManagement> |
| 209 | + |
133 | 210 | </project> |
0 commit comments