|
33 | 33 | </developer>
|
34 | 34 | </developers>
|
35 | 35 |
|
36 |
| - <!-- For Deploy --> |
37 | 36 | <distributionManagement>
|
| 37 | + <snapshotRepository> |
| 38 | + <id>ossrh</id> |
| 39 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 40 | + </snapshotRepository> |
38 | 41 | <repository>
|
39 |
| - <id>at.orz</id> |
40 |
| - <name>tamtam180 Repository</name> |
41 |
| - <url>scp://maven.orz.at/virtual/orz/public_html/maven.orz.at/</url> |
| 42 | + <id>ossrh</id> |
| 43 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
42 | 44 | </repository>
|
43 | 45 | </distributionManagement>
|
44 | 46 |
|
45 | 47 | <build>
|
46 | 48 | <plugins>
|
| 49 | + <plugin> |
| 50 | + <groupId>org.sonatype.plugins</groupId> |
| 51 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 52 | + <version>1.6.3</version> |
| 53 | + <extensions>true</extensions> |
| 54 | + <configuration> |
| 55 | + <serverId>ossrh</serverId> |
| 56 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 57 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 58 | + </configuration> |
| 59 | + </plugin> |
| 60 | + |
47 | 61 | <plugin>
|
48 | 62 | <groupId>org.apache.maven.plugins</groupId>
|
49 | 63 | <artifactId>maven-assembly-plugin</artifactId>
|
|
68 | 82 | </descriptorRefs>
|
69 | 83 | </configuration>
|
70 | 84 | </plugin>
|
| 85 | + |
71 | 86 | <plugin>
|
72 | 87 | <groupId>org.apache.maven.plugins</groupId>
|
73 | 88 | <artifactId>maven-compiler-plugin</artifactId>
|
|
100 | 115 | </executions>
|
101 | 116 | </plugin>
|
102 | 117 |
|
| 118 | + <plugin> |
| 119 | + <groupId>org.apache.maven.plugins</groupId> |
| 120 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 121 | + <version>2.9.1</version> |
| 122 | + <executions> |
| 123 | + <execution> |
| 124 | + <id>attach-javadocs</id> |
| 125 | + <goals> |
| 126 | + <goal>jar</goal> |
| 127 | + </goals> |
| 128 | + </execution> |
| 129 | + </executions> |
| 130 | + </plugin> |
103 | 131 |
|
104 | 132 | <plugin>
|
105 | 133 | <artifactId>maven-surefire-plugin</artifactId>
|
|
120 | 148 | </configuration>
|
121 | 149 | </plugin>
|
122 | 150 |
|
123 |
| - </plugins> |
| 151 | + <plugin> |
| 152 | + <groupId>org.apache.maven.plugins</groupId> |
| 153 | + <artifactId>maven-gpg-plugin</artifactId> |
| 154 | + <version>1.5</version> |
| 155 | + <executions> |
| 156 | + <execution> |
| 157 | + <id>sign-artifacts</id> |
| 158 | + <phase>verify</phase> |
| 159 | + <goals> |
| 160 | + <goal>sign</goal> |
| 161 | + </goals> |
| 162 | + </execution> |
| 163 | + </executions> |
| 164 | + </plugin> |
124 | 165 |
|
125 |
| - <!-- Deply with SSH --> |
126 |
| - <extensions> |
127 |
| - <extension> |
128 |
| - <groupId>org.apache.maven.wagon</groupId> |
129 |
| - <artifactId>wagon-ssh</artifactId> |
130 |
| - <version>2.4</version> |
131 |
| - </extension> |
132 |
| - </extensions> |
| 166 | + </plugins> |
133 | 167 |
|
134 | 168 | </build>
|
135 | 169 |
|
|
0 commit comments