Skip to content

Commit 22a93ce

Browse files
committed
% prepare first snapshot deploy
1 parent a0a486c commit 22a93ce

File tree

1 file changed

+25
-15
lines changed

1 file changed

+25
-15
lines changed

pom.xml

+25-15
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>com.gargoylesoftware.cssparser</groupId>
5+
<groupId>net.sourceforge.htmlunit</groupId>
66
<artifactId>htmlunit-cssparser</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
88
<name>HtmlUnit CSS Parser</name>
9-
<url>http://cssparser.sourceforge.net/</url>
9+
<url>https://github.com/HtmlUnit/htmlunit-cssparser</url>
1010
<packaging>jar</packaging>
1111
<description>CSS parser for HtmlUnit.</description>
1212
<parent>
@@ -18,6 +18,16 @@
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1919
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
2020
</properties>
21+
22+
<dependencies>
23+
<dependency>
24+
<groupId>junit</groupId>
25+
<artifactId>junit</artifactId>
26+
<version>4.12</version>
27+
<scope>test</scope>
28+
</dependency>
29+
</dependencies>
30+
2131
<build>
2232
<plugins>
2333
<plugin>
@@ -229,24 +239,32 @@
229239
</plugin>
230240
</plugins>
231241
</reporting>
232-
<issueManagement>
233-
<system>SourceForge2</system>
234-
<url>http://sourceforge.net/p/cssparser/bugs/</url>
235-
</issueManagement>
236-
<inceptionYear>1999</inceptionYear>
242+
237243
<licenses>
238244
<license>
239245
<name>Apache License, Version 2.0</name>
240246
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
241247
<distribution>repo</distribution>
242248
</license>
243249
</licenses>
250+
244251
<scm>
245252
<connection>scm:git:[email protected]:HtmlUnit/htmlunit-cssparser.git</connection>
246253
<developerConnection>scm:git:[email protected]:HtmlUnit/htmlunit-cssparser.git</developerConnection>
247254
<url>https://github.com/htmlunit</url>
248255
</scm>
249256

257+
<distributionManagement>
258+
<snapshotRepository>
259+
<id>sonatype-nexus-snapshots</id>
260+
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
261+
</snapshotRepository>
262+
<repository>
263+
<id>sonatype-nexus-staging</id>
264+
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
265+
</repository>
266+
</distributionManagement>
267+
250268
<mailingLists>
251269
</mailingLists>
252270
<developers>
@@ -275,12 +293,4 @@
275293
<name>Ahmed Ashour</name>
276294
</contributor>
277295
</contributors>
278-
<dependencies>
279-
<dependency>
280-
<groupId>junit</groupId>
281-
<artifactId>junit</artifactId>
282-
<version>4.12</version>
283-
<scope>test</scope>
284-
</dependency>
285-
</dependencies>
286296
</project>

0 commit comments

Comments
 (0)