Created
April 30, 2013 00:10
-
-
Save rkrzewski/5485784 to your computer and use it in GitHub Desktop.
POMs for Bnd 2.0.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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>biz.aQute.bnd</groupId> | |
<artifactId>parent</artifactId> | |
<version>2.0.0</version> | |
</parent> | |
<artifactId>annotation</artifactId> | |
<name>bnd Annotations Library</name> | |
<description>The annotations for bnd.</description> | |
<licenses> | |
<license> | |
<name>Apache Software License 2.0</name> | |
<url>http://www.opensource.org/licenses/apache2.0.php</url> | |
<distribution>repo</distribution> | |
</license> | |
</licenses> | |
</project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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>biz.aQute.bnd</groupId> | |
<artifactId>parent</artifactId> | |
<version>2.0.0</version> | |
</parent> | |
<artifactId>bnd</artifactId> | |
<name>aQute Bundle Tool</name> | |
<description> | |
A command line utility and Ant plugin to wrap, build, or examine bundles. | |
</description> | |
<licenses> | |
<license> | |
<name>All files contained in this JAR are licensed under the Apache 2.0 license, unless noted differently in their source (see swing2swt).</name> | |
<url>http://www.opensource.org/licenses/apache2.0.php</url> | |
<distribution>repo</distribution> | |
</license> | |
</licenses> | |
<dependencies> | |
<dependency> | |
<groupId>ant</groupId> | |
<artifactId>ant</artifactId> | |
<version>1.6.5</version> | |
<optional>true</optional> | |
</dependency> | |
<dependency> | |
<groupId>org.osgi</groupId> | |
<artifactId>org.osgi.core</artifactId> | |
<version>4.2.0</version> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>3.8.2</version> | |
<optional>true</optional> | |
</dependency> | |
</dependencies> | |
</project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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>biz.aQute.bnd</groupId> | |
<artifactId>parent</artifactId> | |
<version>2.0.0</version> | |
</parent> | |
<artifactId>bndlib</artifactId> | |
<name>A Swiss Army Knife for OSGi</name> | |
<description> | |
The bndlib project is a general library to be used with OSGi bundles. It contains | |
lots of cool functionality that calculates dependencies, etc. | |
</description> | |
<licenses> | |
<license> | |
<name>Apache Software License 2.0</name> | |
<url>http://www.opensource.org/licenses/apache2.0.php</url> | |
<distribution>repo</distribution> | |
</license> | |
</licenses> | |
<dependencies> | |
<dependency> | |
<groupId>org.osgi</groupId> | |
<artifactId>org.osgi.core</artifactId> | |
<version>4.2.0</version> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>3.8.2</version> | |
<optional>true</optional> | |
</dependency> | |
</dependencies> | |
</project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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>biz.aQute.bnd</groupId> | |
<artifactId>parent</artifactId> | |
<version>2.0.0</version> | |
<packaging>pom</packaging> | |
<name>Parent project for bnd tool suite</name> | |
<url>http://www.aQute.biz/Code/Bnd</url> | |
<scm> | |
<url>https://github.com/bndtools/bnd</url> | |
<connection>scm:git:git://github.com/bndtools/bnd.git</connection> | |
<developerConnection>scm:git:ssh://github.com/bndtools/bnd.git</developerConnection> | |
</scm> | |
<organization> | |
<name>aQute SARL</name> | |
<url>http://www.aQute.biz</url> | |
</organization> | |
<developers> | |
<developer> | |
<id>bnd</id> | |
<name>Peter Kriens</name> | |
<organization>aQute SARL</organization> | |
<roles> | |
<role>Primary Developer</role> | |
</roles> | |
</developer> | |
<developer> | |
<id>bjhargrave</id> | |
<name>BJ Hargrave</name> | |
</developer> | |
<developer> | |
<id>mcculls</id> | |
<name>Stuart McCulloch</name> | |
</developer> | |
<developer> | |
<id>njbartlett</id> | |
<name>Neil Bartlett</name> | |
<organization>Paremus</organization> | |
</developer> | |
<developer> | |
<id>fhuberts</id> | |
<name>Ferry Huberts</name> | |
<organization>Pelagic</organization> | |
</developer> | |
<developer> | |
<id>psoreide</id> | |
<name>PK Søreide</name> | |
<organization>Comactivity AB</organization> | |
</developer> | |
</developers> | |
<contributors> | |
<contributor> | |
<id>derheld42</id> | |
<name>Carter Smithhart</name> | |
</contributor> | |
<contributor> | |
<id>cchabanois</id> | |
<name>Chabanois Cédric</name> | |
<organization>Entropysoft</organization> | |
</contributor> | |
<contributor> | |
<id>paulbakker</id> | |
<name>Paul Bakker</name> | |
<organization>Luminis Technologies</organization> | |
</contributor> | |
<contributor> | |
<id>djencks</id> | |
<name>David Jencks</name> | |
</contributor> | |
<contributor> | |
<id>rkrzewski</id> | |
<name>Rafał Krzewski</name> | |
<organization>Caltha - Krzewski, Mach, Potempski Sp. J.</organization> | |
</contributor> | |
<contributor> | |
<id>xfournet</id> | |
<name>Xavier Fournet</name> | |
</contributor> | |
</contributors> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment