|
1 |
| -<project> |
| 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"> |
2 | 3 | <modelVersion>4.0.0</modelVersion>
|
3 |
| - <groupId>com.threelevers.css</groupId> |
4 |
| - <artifactId>3levers-css</artifactId> |
5 |
| - <version>1-SNAPSHOT</version> |
| 4 | + <groupId>com.3levers.cssselectors</groupId> |
| 5 | + <artifactId>cssselectors</artifactId> |
| 6 | + <version>1.0-SNAPSHOT</version> |
6 | 7 | <name>CSS Selectors</name>
|
7 | 8 | <build>
|
8 | 9 | <plugins>
|
|
28 | 29 | </executions>
|
29 | 30 | </plugin>
|
30 | 31 | </plugins>
|
| 32 | + <extensions> |
| 33 | + <extension> |
| 34 | + <groupId>org.jvnet.wagon-svn</groupId> |
| 35 | + <artifactId>wagon-svn</artifactId> |
| 36 | + <version>1.8</version> |
| 37 | + </extension> |
| 38 | + </extensions> |
31 | 39 | </build>
|
32 | 40 | <dependencies>
|
33 | 41 | <dependency>
|
|
36 | 44 | <version>3.0.1</version>
|
37 | 45 | </dependency>
|
38 | 46 | <dependency>
|
39 |
| - <groupId>com.google.code.google-collections</groupId> |
40 |
| - <artifactId>google-collect</artifactId> |
41 |
| - <version>snapshot-20080530</version> |
| 47 | + <groupId>com.google.collections</groupId> |
| 48 | + <artifactId>google-collections</artifactId> |
| 49 | + <version>1.0-rc2</version> |
42 | 50 | </dependency>
|
43 | 51 | <dependency>
|
44 | 52 | <groupId>junit</groupId>
|
45 | 53 | <artifactId>junit-dep</artifactId>
|
46 | 54 | <version>4.5</version>
|
47 | 55 | <scope>test</scope>
|
| 56 | + <exclusions> |
| 57 | + <exclusion> |
| 58 | + <groupId>org.hamcrest</groupId> |
| 59 | + <artifactId>hamcrest-core</artifactId> |
| 60 | + </exclusion> |
| 61 | + </exclusions> |
48 | 62 | </dependency>
|
49 | 63 | <dependency>
|
50 | 64 | <groupId>org.hamcrest</groupId>
|
51 |
| - <artifactId>hamcrest-core</artifactId> |
52 |
| - <version>1.2RC3</version> |
53 |
| - <scope>test</scope> |
54 |
| - </dependency> |
55 |
| - <dependency> |
56 |
| - <groupId>org.hamcrest</groupId> |
57 |
| - <artifactId>hamcrest-library</artifactId> |
58 |
| - <version>1.2RC3</version> |
59 |
| - <scope>test</scope> |
60 |
| - </dependency> |
61 |
| - <dependency> |
62 |
| - <groupId>org.hamcrest</groupId> |
63 |
| - <artifactId>hamcrest-integration</artifactId> |
64 |
| - <version>1.2RC3</version> |
| 65 | + <artifactId>hamcrest-all</artifactId> |
| 66 | + <version>1.2</version> |
65 | 67 | <scope>test</scope>
|
66 | 68 | </dependency>
|
67 | 69 | <dependency>
|
|
71 | 73 | <scope>test</scope>
|
72 | 74 | </dependency>
|
73 | 75 | </dependencies>
|
| 76 | + <distributionManagement> |
| 77 | + <repository> |
| 78 | + <uniqueVersion>false</uniqueVersion> |
| 79 | + <id>3levers-googlecode-releases</id> |
| 80 | + <url>svn:https://3levers.googlecode.com/svn/maven2/releases</url> |
| 81 | + </repository> |
| 82 | + <snapshotRepository> |
| 83 | + <uniqueVersion>true</uniqueVersion> |
| 84 | + <id>3levers-googlecode-snapshots</id> |
| 85 | + <url>svn:https://3levers.googlecode.com/svn/maven2/snapshots</url> |
| 86 | + </snapshotRepository> |
| 87 | + </distributionManagement> |
| 88 | + <scm> |
| 89 | + <connection>scm:git:git://github.com/rwallace/cssselectors.git</connection> |
| 90 | + <url>scm:git:git://github.com/rwallace/cssselectors.git</url> |
| 91 | + </scm> |
74 | 92 | </project>
|
0 commit comments