|
55 | 55 |
|
56 | 56 | <licenses> |
57 | 57 | <license> |
58 | | - <name>MIT License</name> |
59 | | - <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 58 | + <name>Apache Software License, Version 2.0</name> |
| 59 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
60 | 60 | </license> |
61 | 61 | </licenses> |
62 | 62 |
|
|
70 | 70 | <developer> |
71 | 71 | <name>Mathieu SOYSAL</name> |
72 | 72 | <email>Mathieu.Soysal@outlook.fr</email> |
| 73 | + <url>https://MathieuSoysal.me/</url> |
73 | 74 | <organization>com.github.devlab-umontp</organization> |
74 | 75 | <organizationUrl>https://github.com/DevLab-umontp</organizationUrl> |
75 | 76 | </developer> |
76 | 77 | </developers> |
77 | 78 |
|
| 79 | + <issueManagement> |
| 80 | + <system>github</system> |
| 81 | + <url>https://github.com/DevLab-umontp/Librarie-Java-EDT/issues</url> |
| 82 | + </issueManagement> |
| 83 | + |
78 | 84 | <scm> |
79 | 85 | <connection>scm:git:git://github.com/DevLab-umontp/API-JAVA-EDT.git</connection> |
80 | 86 | <developerConnection>scm:git:ssh://github.com:DevLab-umontp/API-JAVA-EDT.git</developerConnection> |
81 | 87 | <url>http://github.com/DevLab-umontp/API-JAVA-EDT</url> |
82 | 88 | </scm> |
83 | 89 |
|
84 | | - <distributionManagement> |
85 | | - <snapshotRepository> |
86 | | - <id>ossrh</id> |
87 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
88 | | - </snapshotRepository> |
89 | | - <repository> |
90 | | - <id>ossrh</id> |
91 | | - <name>Sonatype</name> |
92 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
93 | | - </repository> |
94 | | - </distributionManagement> |
95 | | - |
96 | 90 |
|
97 | 91 | <profiles> |
| 92 | + |
| 93 | + <!-- Porfil : Maven Centrale --> |
98 | 94 | <profile> |
99 | | - <id>release</id> |
| 95 | + <id>ossrhDeploy</id> |
| 96 | + |
| 97 | + <distributionManagement> |
| 98 | + <snapshotRepository> |
| 99 | + <id>ossrh</id> |
| 100 | + <name>Central Repository OSSRH</name> |
| 101 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 102 | + </snapshotRepository> |
| 103 | + <repository> |
| 104 | + <id>ossrh</id> |
| 105 | + <name>Central Repository OSSRH</name> |
| 106 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 107 | + </repository> |
| 108 | + </distributionManagement> |
| 109 | + |
100 | 110 | <build> |
101 | 111 | <plugins> |
| 112 | + |
| 113 | + <plugin> |
| 114 | + <groupId>org.sonatype.plugins</groupId> |
| 115 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 116 | + <version>1.6.8</version> |
| 117 | + <extensions>true</extensions> |
| 118 | + <configuration> |
| 119 | + <serverId>ossrh</serverId> |
| 120 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 121 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 122 | + </configuration> |
| 123 | + </plugin> |
| 124 | + |
102 | 125 | <plugin> |
103 | 126 | <groupId>org.apache.maven.plugins</groupId> |
104 | 127 | <artifactId>maven-source-plugin</artifactId> |
|
107 | 130 | <execution> |
108 | 131 | <id>attach-sources</id> |
109 | 132 | <goals> |
110 | | - <goal>jar</goal> |
| 133 | + <goal>jar-no-fork</goal> |
111 | 134 | </goals> |
112 | 135 | </execution> |
113 | 136 | </executions> |
114 | 137 | </plugin> |
| 138 | + |
115 | 139 | <plugin> |
116 | 140 | <groupId>org.apache.maven.plugins</groupId> |
117 | 141 | <artifactId>maven-javadoc-plugin</artifactId> |
|
125 | 149 | </execution> |
126 | 150 | </executions> |
127 | 151 | </plugin> |
| 152 | + |
128 | 153 | <plugin> |
129 | 154 | <groupId>org.apache.maven.plugins</groupId> |
130 | 155 | <artifactId>maven-gpg-plugin</artifactId> |
|
136 | 161 | <goals> |
137 | 162 | <goal>sign</goal> |
138 | 163 | </goals> |
| 164 | + <configuration> |
| 165 | + <gpgArguments> |
| 166 | + <arg>--pinentry-mode</arg> |
| 167 | + <arg>loopback</arg> |
| 168 | + </gpgArguments> |
| 169 | + </configuration> |
139 | 170 | </execution> |
140 | 171 | </executions> |
141 | 172 | </plugin> |
| 173 | + |
142 | 174 | </plugins> |
143 | 175 | </build> |
144 | 176 | </profile> |
| 177 | + |
| 178 | + <!-- Profil : Github Apache Maven Packages --> |
| 179 | + <profile> |
| 180 | + <id>githubDeploy</id> |
| 181 | + <distributionManagement> |
| 182 | + <repository> |
| 183 | + <id>github</id> |
| 184 | + <name>GitHub DevLab-umontp Apache Maven Packages</name> |
| 185 | + <url>https://maven.pkg.github.com/DevLab-umontp/Librarie-Java-EDT</url> |
| 186 | + </repository> |
| 187 | + </distributionManagement> |
| 188 | + </profile> |
145 | 189 | </profiles> |
146 | 190 |
|
147 | 191 | <build> |
148 | 192 | <plugins> |
| 193 | + |
149 | 194 | <plugin> |
150 | 195 | <groupId>org.apache.maven.plugins</groupId> |
151 | 196 | <artifactId>maven-surefire-plugin</artifactId> |
152 | 197 | <version>3.0.0-M5</version> |
153 | 198 | </plugin> |
| 199 | + |
154 | 200 | <plugin> |
155 | 201 | <groupId>org.apache.maven.plugins</groupId> |
156 | 202 | <artifactId>maven-failsafe-plugin</artifactId> |
157 | 203 | <version>3.0.0-M5</version> |
158 | 204 | </plugin> |
| 205 | + |
159 | 206 | <plugin> |
160 | 207 | <groupId>org.apache.maven.plugins</groupId> |
161 | 208 | <artifactId>maven-compiler-plugin</artifactId> |
|
166 | 213 | <encoding>${project.build.sourceEncoding}</encoding> |
167 | 214 | </configuration> |
168 | 215 | </plugin> |
169 | | - <plugin> |
170 | | - <groupId>org.sonatype.plugins</groupId> |
171 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
172 | | - <version>1.6.8</version> |
173 | | - <extensions>true</extensions> |
174 | | - <configuration> |
175 | | - <serverId>ossrh</serverId> |
176 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
177 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
178 | | - </configuration> |
179 | | - </plugin> |
| 216 | + |
180 | 217 | <plugin> |
181 | 218 | <groupId>org.jacoco</groupId> |
182 | 219 | <artifactId>jacoco-maven-plugin</artifactId> |
|
197 | 234 | </execution> |
198 | 235 | </executions> |
199 | 236 | </plugin> |
| 237 | + |
200 | 238 | </plugins> |
201 | 239 | </build> |
202 | 240 | </project> |
0 commit comments