Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Aniszczyk2011-03-08 17:41:52 +0000
committerChris Aniszczyk2011-03-08 17:41:52 +0000
commitdc2b4bdacc7e285884defac096041dd1a7a82a91 (patch)
treeb60a631c00fa6896fb06f85d62778ddec5a77231 /rpmstubby
parent04c8161bcfc63bf426e2bbc3460407c0de8357bc (diff)
downloadorg.eclipse.linuxtools-dc2b4bdacc7e285884defac096041dd1a7a82a91.tar.gz
org.eclipse.linuxtools-dc2b4bdacc7e285884defac096041dd1a7a82a91.tar.xz
org.eclipse.linuxtools-dc2b4bdacc7e285884defac096041dd1a7a82a91.zip
Add rpmstubby to the tycho-based build
Signed-off-by: Chris Aniszczyk <zx@redhat.com>
Diffstat (limited to 'rpmstubby')
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby-feature/.gitignore1
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby-feature/pom.xml27
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby/.gitignore1
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby/pom.xml53
-rw-r--r--rpmstubby/pom.xml52
5 files changed, 134 insertions, 0 deletions
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby-feature/.gitignore b/rpmstubby/org.eclipse.linuxtools.rpmstubby-feature/.gitignore
index 50c1b30a80..8d94ef8deb 100644
--- a/rpmstubby/org.eclipse.linuxtools.rpmstubby-feature/.gitignore
+++ b/rpmstubby/org.eclipse.linuxtools.rpmstubby-feature/.gitignore
@@ -2,3 +2,4 @@ bin
@dot
javaCompiler...args
build.xml
+target
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby-feature/pom.xml b/rpmstubby/org.eclipse.linuxtools.rpmstubby-feature/pom.xml
new file mode 100644
index 0000000000..d14816a2b3
--- /dev/null
+++ b/rpmstubby/org.eclipse.linuxtools.rpmstubby-feature/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com>
+
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+-->
+
+<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>
+
+ <parent>
+ <groupId>org.eclipse.linuxtools.rpmstubby</groupId>
+ <artifactId>linuxtools-rpmstubby-parent</artifactId>
+ <version>0.3.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.linuxtools.rpmstubby-feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+
+ <name>LinuxTools RPMStubby Feature (Incubation)</name>
+
+</project>
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby/.gitignore b/rpmstubby/org.eclipse.linuxtools.rpmstubby/.gitignore
index 50c1b30a80..8d94ef8deb 100644
--- a/rpmstubby/org.eclipse.linuxtools.rpmstubby/.gitignore
+++ b/rpmstubby/org.eclipse.linuxtools.rpmstubby/.gitignore
@@ -2,3 +2,4 @@ bin
@dot
javaCompiler...args
build.xml
+target
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby/pom.xml b/rpmstubby/org.eclipse.linuxtools.rpmstubby/pom.xml
new file mode 100644
index 0000000000..11ed02a4b5
--- /dev/null
+++ b/rpmstubby/org.eclipse.linuxtools.rpmstubby/pom.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com>
+
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+-->
+
+<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>
+
+ <parent>
+ <groupId>org.eclipse.linuxtools.rpmstubby</groupId>
+ <artifactId>linuxtools-rpmstubby-parent</artifactId>
+ <version>0.3.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.linuxtools.rpmstubby</artifactId>
+ <packaging>eclipse-plugin</packaging>
+
+ <name>LinuxTools RPMStubby Plug-in</name>
+
+ <build>
+ <!-- workaround for https://issues.sonatype.org/browse/TYCHO-168 -->
+ <resources>
+ <resource>
+ <directory>src</directory>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-source-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
diff --git a/rpmstubby/pom.xml b/rpmstubby/pom.xml
new file mode 100644
index 0000000000..6f0292249d
--- /dev/null
+++ b/rpmstubby/pom.xml
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com>
+
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+-->
+
+<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>
+
+ <prerequisites>
+ <maven>3.0</maven>
+ </prerequisites>
+
+ <parent>
+ <groupId>org.eclipse.linuxtools</groupId>
+ <artifactId>linuxtools-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.eclipse.linuxtools.rpmstubby</groupId>
+ <artifactId>linuxtools-rpmstubby-parent</artifactId>
+ <version>0.3.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <name>Eclipse LinuxTools RPMStubby Parent</name>
+
+ <licenses>
+ <license>
+ <name>Eclipse Public License v1.0</name>
+ <comments>
+ All rights reserved.
+
+ This program and the accompanying materials are made
+ available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.htm
+ </comments>
+ </license>
+ </licenses>
+
+ <modules>
+ <module>org.eclipse.linuxtools.rpmstubby</module>
+ <module>org.eclipse.linuxtools.rpmstubby-feature</module>
+ </modules>
+
+</project>

Back to the top