|
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> |
|
85 | 85 | <!-- Properties --> |
86 | 86 | <properties> |
87 | 87 | <!-- Version of Gephi building plugins against. Plugins with anterior versions will be ignored --> |
88 | | - <gephi.version>0.10.0</gephi.version> |
| 88 | + <gephi.version>0.11.1</gephi.version> |
89 | 89 | <clusters.path>${project.build.directory}/plugins_clusters</clusters.path> |
90 | 90 | <github.global.server>github</github.global.server> |
91 | 91 | <maven.compiler.source>11</maven.compiler.source> |
|
100 | 100 | </scm> |
101 | 101 |
|
102 | 102 | <!-- Repositories --> |
| 103 | + <!-- Note: if testing against a snapshot version of gephi-maven-plugin, a <pluginRepositories> entry for central-portal-snapshots must be added back --> |
103 | 104 | <repositories> |
104 | 105 | <repository> |
105 | | - <id>oss-sonatype</id> |
106 | | - <name>oss-sonatype</name> |
107 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 106 | + <name>Central Portal Snapshots</name> |
| 107 | + <id>central-portal-snapshots</id> |
| 108 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
| 109 | + <releases> |
| 110 | + <enabled>false</enabled> |
| 111 | + </releases> |
108 | 112 | <snapshots> |
109 | 113 | <enabled>true</enabled> |
110 | 114 | </snapshots> |
111 | 115 | </repository> |
112 | 116 | </repositories> |
113 | 117 |
|
114 | | - <!-- Plugin Repositories --> |
115 | | - <pluginRepositories> |
116 | | - <pluginRepository> |
117 | | - <id>oss-sonatype</id> |
118 | | - <name>oss-sonatype</name> |
119 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
120 | | - <snapshots> |
121 | | - <enabled>true</enabled> |
122 | | - </snapshots> |
123 | | - </pluginRepository> |
124 | | - </pluginRepositories> |
125 | | - |
126 | 118 | <!-- For site only --> |
127 | 119 | <distributionManagement> |
128 | 120 | <site> |
|
149 | 141 | <plugin> |
150 | 142 | <groupId>org.apache.maven.plugins</groupId> |
151 | 143 | <artifactId>maven-dependency-plugin</artifactId> |
152 | | - <version>3.2.0</version> |
| 144 | + <version>3.6.1</version> |
153 | 145 | </plugin> |
154 | 146 | <plugin> |
155 | 147 | <groupId>org.apache.netbeans.utilities</groupId> |
156 | 148 | <artifactId>nbm-maven-plugin</artifactId> |
157 | | - <version>4.5</version> |
| 149 | + <version>14.4</version> |
158 | 150 | <extensions>true</extensions> |
159 | 151 | </plugin> |
160 | 152 | <plugin> |
|
165 | 157 | <plugin> |
166 | 158 | <groupId>org.apache.maven.plugins</groupId> |
167 | 159 | <artifactId>maven-scm-publish-plugin</artifactId> |
168 | | - <version>3.1.0</version> |
| 160 | + <version>3.2.1</version> |
| 161 | + </plugin> |
| 162 | + <plugin> |
| 163 | + <groupId>org.sonatype.central</groupId> |
| 164 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 165 | + <version>0.10.0</version> |
| 166 | + <extensions>true</extensions> |
169 | 167 | </plugin> |
170 | 168 | </plugins> |
171 | 169 | </pluginManagement> |
|
225 | 223 | <groupId>org.apache.netbeans.utilities</groupId> |
226 | 224 | <artifactId>nbm-maven-plugin</artifactId> |
227 | 225 | <configuration> |
228 | | - <nbmBuildDir>${clusters.path}</nbmBuildDir> |
| 226 | + <clusterBuildDir>${clusters.path}</clusterBuildDir> |
229 | 227 | </configuration> |
230 | 228 | <executions> |
231 | 229 | <execution> |
|
246 | 244 |
|
247 | 245 | <!-- Custom profile only used to build and package all modules at once --> |
248 | 246 | <profiles> |
| 247 | + <profile> |
| 248 | + <id>release-pom</id> |
| 249 | + <build> |
| 250 | + <plugins> |
| 251 | + <!-- Maven central --> |
| 252 | + <plugin> |
| 253 | + <groupId>org.sonatype.central</groupId> |
| 254 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 255 | + <extensions>true</extensions> |
| 256 | + <configuration> |
| 257 | + <publishingServerId>central</publishingServerId> |
| 258 | + <autoPublish>true</autoPublish> |
| 259 | + </configuration> |
| 260 | + </plugin> |
| 261 | + </plugins> |
| 262 | + </build> |
| 263 | + </profile> |
249 | 264 | <profile> |
250 | 265 | <id>release</id> |
251 | 266 | <build> |
|
0 commit comments