|
4 | 4 |
|
5 | 5 | <groupId>org.gephi</groupId> |
6 | 6 | <artifactId>gephi-plugins</artifactId> |
7 | | - <version>0.10.0</version> |
| 7 | + <version>0.11.1</version> |
8 | 8 | <packaging>pom</packaging> |
9 | 9 |
|
10 | 10 | <name>gephi-plugins</name> |
|
18 | 18 | <!-- Properties --> |
19 | 19 | <properties> |
20 | 20 | <!-- Version of Gephi building plugins against. Plugins with anterior versions will be ignored --> |
21 | | - <gephi.version>0.10.0</gephi.version> |
| 21 | + <gephi.version>0.11.1</gephi.version> |
22 | 22 | <clusters.path>${project.build.directory}/plugins_clusters</clusters.path> |
23 | 23 | <github.global.server>github</github.global.server> |
24 | 24 | </properties> |
|
31 | 31 | </scm> |
32 | 32 |
|
33 | 33 | <!-- Repositories --> |
| 34 | + <!-- Note: if testing against a snapshot version of gephi-maven-plugin, a <pluginRepositories> entry for central-portal-snapshots must be added back --> |
34 | 35 | <repositories> |
35 | 36 | <repository> |
36 | | - <id>oss-sonatype</id> |
37 | | - <name>oss-sonatype</name> |
38 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 37 | + <name>Central Portal Snapshots</name> |
| 38 | + <id>central-portal-snapshots</id> |
| 39 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
| 40 | + <releases> |
| 41 | + <enabled>false</enabled> |
| 42 | + </releases> |
39 | 43 | <snapshots> |
40 | 44 | <enabled>true</enabled> |
41 | 45 | </snapshots> |
42 | 46 | </repository> |
43 | 47 | </repositories> |
44 | | - |
45 | | - <!-- Plugin Repositories --> |
46 | | - <pluginRepositories> |
47 | | - <pluginRepository> |
48 | | - <id>oss-sonatype</id> |
49 | | - <name>oss-sonatype</name> |
50 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
51 | | - <snapshots> |
52 | | - <enabled>true</enabled> |
53 | | - </snapshots> |
54 | | - </pluginRepository> |
55 | | - </pluginRepositories> |
56 | 48 |
|
57 | 49 | <!-- For site only --> |
58 | 50 | <distributionManagement> |
|
80 | 72 | <plugin> |
81 | 73 | <groupId>org.apache.maven.plugins</groupId> |
82 | 74 | <artifactId>maven-dependency-plugin</artifactId> |
83 | | - <version>3.2.0</version> |
| 75 | + <version>3.6.1</version> |
84 | 76 | </plugin> |
85 | 77 | <plugin> |
86 | 78 | <groupId>org.apache.netbeans.utilities</groupId> |
87 | 79 | <artifactId>nbm-maven-plugin</artifactId> |
88 | | - <version>4.5</version> |
| 80 | + <version>14.4</version> |
89 | 81 | <extensions>true</extensions> |
90 | 82 | </plugin> |
91 | 83 | <plugin> |
|
96 | 88 | <plugin> |
97 | 89 | <groupId>org.apache.maven.plugins</groupId> |
98 | 90 | <artifactId>maven-scm-publish-plugin</artifactId> |
99 | | - <version>3.1.0</version> |
| 91 | + <version>3.2.1</version> |
| 92 | + </plugin> |
| 93 | + <plugin> |
| 94 | + <groupId>org.sonatype.central</groupId> |
| 95 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 96 | + <version>0.10.0</version> |
| 97 | + <extensions>true</extensions> |
100 | 98 | </plugin> |
101 | 99 | </plugins> |
102 | 100 | </pluginManagement> |
|
156 | 154 | <groupId>org.apache.netbeans.utilities</groupId> |
157 | 155 | <artifactId>nbm-maven-plugin</artifactId> |
158 | 156 | <configuration> |
159 | | - <nbmBuildDir>${clusters.path}</nbmBuildDir> |
| 157 | + <clusterBuildDir>${clusters.path}</clusterBuildDir> |
160 | 158 | </configuration> |
161 | 159 | <executions> |
162 | 160 | <execution> |
|
177 | 175 |
|
178 | 176 | <!-- Custom profile only used to build and package all modules at once --> |
179 | 177 | <profiles> |
| 178 | + <profile> |
| 179 | + <id>release-pom</id> |
| 180 | + <build> |
| 181 | + <plugins> |
| 182 | + <!-- Maven central --> |
| 183 | + <plugin> |
| 184 | + <groupId>org.sonatype.central</groupId> |
| 185 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 186 | + <extensions>true</extensions> |
| 187 | + <configuration> |
| 188 | + <publishingServerId>central</publishingServerId> |
| 189 | + <autoPublish>true</autoPublish> |
| 190 | + </configuration> |
| 191 | + </plugin> |
| 192 | + </plugins> |
| 193 | + </build> |
| 194 | + </profile> |
180 | 195 | <profile> |
181 | 196 | <id>release</id> |
182 | 197 | <build> |
|
0 commit comments