Skip to content

Commit 79cc1ca

Browse files
committed
robotbrains artifacts.
1 parent b819917 commit 79cc1ca

File tree

182 files changed

+4307
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+4307
-0
lines changed
32.2 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1d5a772e400b04bb67a7ef4a0e0996d8
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.code.findbugs</groupId>
5+
<artifactId>jsr305</artifactId>
6+
<version>1.3.9</version>
7+
<packaging>jar</packaging>
8+
<url>http://findbugs.sourceforge.net/</url>
9+
<name>FindBugs-jsr305</name>
10+
<description>JSR305 Annotations for Findbugs</description>
11+
<licenses>
12+
<license>
13+
<name>The Apache Software License, Version 2.0</name>
14+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15+
<distribution>repo</distribution>
16+
</license>
17+
</licenses>
18+
<scm>
19+
<connection>scm:svn:http://findbugs.googlecode.com/svn/trunk/</connection>
20+
<developerConnection>scm:svn:https://findbugs.googlecode.com/svn/trunk/</developerConnection>
21+
<url>http://findbugs.googlecode.com/svn/trunk/</url>
22+
</scm>
23+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
554239f4d46d9436cf2b2de87691e18f
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
67ea333a3244bc20a17d6f0c29498071dfa409fc
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5+
6+
<modelVersion>4.0.0</modelVersion>
7+
<parent>
8+
<groupId>org.sonatype.oss</groupId>
9+
<artifactId>oss-parent</artifactId>
10+
<version>7</version>
11+
</parent>
12+
<groupId>com.google.guava</groupId>
13+
<artifactId>guava-parent</artifactId>
14+
<version>12.0</version>
15+
<packaging>pom</packaging>
16+
<name>Guava Maven Parent</name>
17+
<url>http://code.google.com/p/guava-libraries</url>
18+
<issueManagement>
19+
<system>code.google.com</system>
20+
<url>http://code.google.com/p/guava-libraries/issues</url>
21+
</issueManagement>
22+
<inceptionYear>2010</inceptionYear>
23+
<licenses>
24+
<license>
25+
<name>The Apache Software License, Version 2.0</name>
26+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
27+
<distribution>repo</distribution>
28+
</license>
29+
</licenses>
30+
<prerequisites>
31+
<maven>2.0.9</maven>
32+
</prerequisites>
33+
<scm>
34+
<connection>scm:git:https://code.google.com/p/guava-libraries/</connection>
35+
<developerConnection>scm:git:https://code.google.com/p/guava-libraries/</developerConnection>
36+
<url>http://code.google.com/p/guava-libraries/source/browse</url>
37+
</scm>
38+
<developers>
39+
<developer>
40+
<id>kevinb9n</id>
41+
<name>Kevin Bourillion</name>
42+
<email>[email protected]</email>
43+
<organization>Google</organization>
44+
<organizationUrl>http://www.google.com</organizationUrl>
45+
<roles>
46+
<role>owner</role>
47+
<role>developer</role>
48+
</roles>
49+
<timezone>-8</timezone>
50+
</developer>
51+
</developers>
52+
<modules>
53+
<module>guava</module>
54+
<module>guava-gwt</module>
55+
<module>guava-testlib</module>
56+
<module>guava-tests</module>
57+
</modules>
58+
<build>
59+
<plugins>
60+
<plugin>
61+
<artifactId>maven-gpg-plugin</artifactId>
62+
<version>1.4</version>
63+
<executions>
64+
<execution>
65+
<id>sign-artifacts</id>
66+
<phase>verify</phase>
67+
<goals><goal>sign</goal></goals>
68+
</execution>
69+
</executions>
70+
</plugin>
71+
<plugin>
72+
<groupId>org.codehaus.mojo</groupId>
73+
<artifactId>versions-maven-plugin</artifactId>
74+
<version>1.2</version>
75+
<configuration>
76+
<generateBackupPoms>false</generateBackupPoms>
77+
</configuration>
78+
</plugin>
79+
</plugins>
80+
</build>
81+
<distributionManagement>
82+
<site>
83+
<id>guava-site</id>
84+
<name>Guava Documentation Site</name>
85+
<url>scp://dummy.server/dontinstall/usestaging</url>
86+
</site>
87+
</distributionManagement>
88+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
51e7b19122f920e93c1bf082f6e22588
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c9d750dd59d8d57ab04d2413aa2516ed6808a00c
3.88 MB
Binary file not shown.

0 commit comments

Comments
 (0)