summaryrefslogtreecommitdiff
path: root/tycho/tycho-dependencies-m2repo/de
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2014-04-10 18:26:51 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-04-10 18:26:51 +0000
commit4b6337f8d6887e5597344810d3fe9c43f3a6d9c1 (patch)
treee5d239799dd6e45900284daa8f29c3ca2a36ed85 /tycho/tycho-dependencies-m2repo/de
parent5ab51b4a119d645f638102a18f11328bba81c42a (diff)
parente1c69b76bdf40644bdce5f5f37c7f5ed0e9f2446 (diff)
downloadeclipse-4b6337f8d6887e5597344810d3fe9c43f3a6d9c1.tar.gz
Merge changes I3e050f26,I1b8abd74idea133-weekly-release
* changes: Tycho plugin and its dependencies Add Apache Maven 3.2.1
Diffstat (limited to 'tycho/tycho-dependencies-m2repo/de')
-rw-r--r--tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/_remote.repositories4
-rw-r--r--tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.jarbin0 -> 111572 bytes
-rw-r--r--tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.jar.sha11
-rw-r--r--tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.pom229
-rw-r--r--tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.pom.sha11
5 files changed, 235 insertions, 0 deletions
diff --git a/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/_remote.repositories b/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/_remote.repositories
new file mode 100644
index 0000000..5d142c7
--- /dev/null
+++ b/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/_remote.repositories
@@ -0,0 +1,4 @@
+#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
+#Tue Apr 08 17:21:10 PDT 2014
+decentxml-1.3.pom>central=
+decentxml-1.3.jar>central=
diff --git a/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.jar b/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.jar
new file mode 100644
index 0000000..fffa054
--- /dev/null
+++ b/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.jar
Binary files differ
diff --git a/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.jar.sha1 b/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.jar.sha1
new file mode 100644
index 0000000..c193e6e
--- /dev/null
+++ b/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.jar.sha1
@@ -0,0 +1 @@
+06e3eb8b08dd761d08efe6c6c7beabd08c919b6f \ No newline at end of file
diff --git a/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.pom b/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.pom
new file mode 100644
index 0000000..2935103
--- /dev/null
+++ b/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.pom
@@ -0,0 +1,229 @@
+<?xml version="1.0" encoding="utf-8"?>
+<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">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>de.pdark</groupId>
+ <artifactId>decentxml</artifactId>
+ <version>1.3</version>
+ <name>DecentXML</name>
+ <description>
+ A decent XML parser. Since it's decent, it's not
+ compatible with the W3C and therefore, it can do roundtripping.
+ </description>
+ <url>http://code.google.com/p/decentxml/</url>
+
+ <inceptionYear>2008</inceptionYear>
+ <licenses>
+ <license>
+ <name>New BSD License</name>
+ <url>http://www.opensource.org/licenses/bsd-license.php</url>
+ </license>
+ </licenses>
+
+ <developers>
+ <developer>
+ <name>Aaron Digulla</name>
+ <email>digulla@hepe.com</email>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+ </developers>
+
+ <issueManagement>
+ <system>Google Code</system>
+ <url>http://code.google.com/p/decentxml/issues/list</url>
+ </issueManagement>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.4</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <properties>
+ <target.dir>target</target.dir>
+ <version.cobertura-maven-plugin>2.2</version.cobertura-maven-plugin>
+ </properties>
+
+ <profiles>
+ <profile>
+ <id>eclipse-folders</id>
+ <properties>
+ <target.dir>target-eclipse</target.dir>
+ </properties>
+ </profile>
+ <!-- I have a patched version of Cobertura that allows to mark a line as
+ irrelevant. For the rest of you, 2.2 (above) should work. -->
+ <profile>
+ <id>c2.3</id>
+ <properties>
+ <version.cobertura-maven-plugin>2.3</version.cobertura-maven-plugin>
+ </properties>
+ </profile>
+
+ <profile>
+ <id>release-sign-artifacts</id>
+ <activation>
+ <property>
+ <name>performRelease</name>
+ <value>true</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <version>1.0-alpha-4</version>
+ <executions>
+ <execution>
+ <id>sign-artifacts</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ </profiles>
+
+ <build>
+ <outputDirectory>${basedir}/${target.dir}/classes</outputDirectory>
+ <testOutputDirectory>${basedir}/${target.dir}/test-classes</testOutputDirectory>
+
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.0.4</version>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>jar</goal>
+ <goal>test-jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-beta-2</version>
+ <configuration>
+ <descriptorRefs>
+ <descriptorRef>bin</descriptorRef>
+ <descriptorRef>src</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-scm-plugin</artifactId>
+ <version>1.0</version>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.5</version>
+ <executions>
+ <execution>
+ <id>jar</id>
+ <phase>package</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <version>${version.cobertura-maven-plugin}</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.0-beta-7</version>
+ <configuration>
+ <tagBase>https://decentxml.googlecode.com/svn/tags/</tagBase>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <version>2.2</version>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.5</version>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-jxr-plugin</artifactId>
+ <version>2.1</version>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <version>2.4.3</version>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <scm>
+ <connection>scm:svn:http://decentxml.googlecode.com/svn/tags/r1.3</connection>
+ <developerConnection>scm:svn:https://decentxml.googlecode.com/svn/tags/r1.3</developerConnection>
+ <url>scm:svn:https://decentxml.googlecode.com/svn/tags/r1.3</url>
+ </scm>
+
+ <distributionManagement>
+ <snapshotRepository>
+ <id>sonatype-nexus-snapshots</id>
+ <name>Sonatype Forge Snapshots Repository</name>
+ <url>http://oss.sonatype.org/content/repositories/snapshots</url>
+ </snapshotRepository>
+ <repository>
+ <id>sonatype-nexus-staging</id>
+ <name>Sonatype Forge Release Repository</name>
+ <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+ </repository>
+ </distributionManagement>
+
+</project>
diff --git a/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.pom.sha1 b/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.pom.sha1
new file mode 100644
index 0000000..434ad43
--- /dev/null
+++ b/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/decentxml-1.3.pom.sha1
@@ -0,0 +1 @@
+362f030ac54646eeb3c7a3d24cee1ab7153dd3b4 \ No newline at end of file