|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | | - |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
4 | 2 | <modelVersion>4.0.0</modelVersion> |
5 | 3 | <groupId>org.primefaces.extensions</groupId> |
6 | 4 | <artifactId>resources-optimizer-maven-plugin</artifactId> |
7 | 5 | <packaging>maven-plugin</packaging> |
8 | 6 | <version>2.6.6</version> |
9 | 7 | <name>PrimeFaces Extensions Resource Optimizer Plugin</name> |
10 | 8 | <description> |
11 | | - <![CDATA[Maven plugin to compress and merge resources like JavaScript and CSS files.]]> |
12 | | - </description> |
| 9 | + <![CDATA[Maven plugin to compress and merge resources like JavaScript and CSS files.]]></description> |
13 | 10 | <url>https://github.com/primefaces-extensions</url> |
14 | | - |
15 | 11 | <licenses> |
16 | 12 | <license> |
17 | 13 | <name>Apache 2</name> |
|
20 | 16 | <comments>A business-friendly OSS license</comments> |
21 | 17 | </license> |
22 | 18 | </licenses> |
23 | | - |
24 | 19 | <scm> |
25 | 20 | <connection>scm:git:git@github.com:primefaces-extensions/resources-optimizer-maven-plugin.git</connection> |
26 | 21 | <developerConnection>scm:git:git@github.com:primefaces-extensions/resources-optimizer-maven-plugin.git</developerConnection> |
27 | 22 | <url>https://github.com/primefaces-extensions/resources-optimizer-maven-plugin</url> |
28 | 23 | <tag>HEAD</tag> |
29 | 24 | </scm> |
30 | | - |
31 | 25 | <developers> |
32 | 26 | <developer> |
33 | 27 | <id>tandraschko</id> |
|
50 | 44 | <timezone>America/New_York</timezone> |
51 | 45 | </developer> |
52 | 46 | </developers> |
53 | | - |
54 | 47 | <properties> |
55 | 48 | <maven.compiler.source>11</maven.compiler.source> |
56 | 49 | <maven.compiler.target>11</maven.compiler.target> |
57 | 50 | <maven.compiler.release>11</maven.compiler.release> |
58 | 51 | <junit.version>5.11.1</junit.version> |
59 | 52 | <project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding> |
60 | 53 | </properties> |
61 | | - |
62 | 54 | <dependencies> |
63 | 55 | <dependency> |
64 | 56 | <groupId>org.apache.maven</groupId> |
|
70 | 62 | <groupId>org.apache.maven.plugin-tools</groupId> |
71 | 63 | <artifactId>maven-plugin-annotations</artifactId> |
72 | 64 | <version>3.15.0</version> |
73 | | - <scope>provided</scope> <!-- annotations are not used at runtime because @Retention(value=CLASS), they are needed only to build the plugin --> |
| 65 | + <scope>provided</scope> |
| 66 | + <!-- annotations are not used at runtime because @Retention(value=CLASS), they are needed only to build the plugin --> |
74 | 67 | </dependency> |
75 | 68 | <dependency> |
76 | 69 | <groupId>org.apache.maven</groupId> |
|
132 | 125 | <scope>test</scope> |
133 | 126 | </dependency> |
134 | 127 | </dependencies> |
135 | | - |
136 | 128 | <build> |
137 | 129 | <plugins> |
138 | 130 | <plugin> |
|
167 | 159 | <version>3.5.0</version> |
168 | 160 | </plugin> |
169 | 161 | <plugin> |
170 | | - <groupId>org.sonatype.plugins</groupId> |
171 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
172 | | - <version>1.7.0</version> |
| 162 | + <groupId>org.sonatype.central</groupId> |
| 163 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 164 | + <version>0.9.0</version> |
173 | 165 | <extensions>true</extensions> |
174 | 166 | <configuration> |
175 | | - <serverId>ossrh</serverId> |
176 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
177 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 167 | + <publishingServerId>central-publisher</publishingServerId> |
| 168 | + <autoPublish>true</autoPublish> |
178 | 169 | </configuration> |
179 | 170 | </plugin> |
180 | 171 | </plugins> |
181 | 172 | </build> |
182 | | - |
183 | 173 | <distributionManagement> |
184 | 174 | <snapshotRepository> |
185 | 175 | <id>ossrh</id> |
|
190 | 180 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
191 | 181 | </repository> |
192 | 182 | </distributionManagement> |
193 | | - |
194 | | - |
195 | 183 | <profiles> |
196 | 184 | <profile> |
197 | 185 | <id>release</id> |
|
221 | 209 | </build> |
222 | 210 | </profile> |
223 | 211 | </profiles> |
224 | | - |
225 | 212 | </project> |
0 commit comments