abeille
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.java.abeille</groupId> <artifactId>abeille</artifactId> <version>3.0</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.java.abeille</groupId> <artifactId>abeille</artifactId> <version>3.0</version> <packaging>jar</packaging> <name>abeille</name> <url>http://www.iro.umontreal.ca/~simardr/ssj/indexe.html</url> <description> Abeille Forms Designer is a WYSIWYG swing UI designer that ships with an LGPL 2.1 source code license and a commercial friendly BSD license for deployment of the Abeille runtime component. </description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <scm> <url>https://github.com/codemercenary/abeille.git</url> <connection>scm:git:https://github.com/codemercenary/abeille.git</connection> <developerConnection>scm:git:https://github.com/codemercenary/abeille.git</developerConnection> <tag>HEAD</tag> </scm> <developers> <developer> <name>Jason Sanchez</name> <email>codemercenary@hotmail.com</email> <organization>Nothing, Inc</organization> <roles> <role>necromancer</role> </roles> </developer> </developers> <licenses> <license> <name>LGPL</name> <comments>Limited GPL License from GNU</comments> <url>http://www.gnu.org/licenses</url> <distribution>repo</distribution> </license> </licenses> <contributors> <contributor> <name>Jason Sanchez</name> <email>codemercenary@hotmail.com</email> <organization>Nothing, Inc</organization> <roles> <role>developer</role> </roles> </contributor> </contributors> <dependencies> <dependency> <groupId>jfree</groupId> <artifactId>jfreechart</artifactId> <version>1.0.13</version> <type>jar</type> </dependency> <dependency> <groupId>org.apache.mahout</groupId> <artifactId>mahout-collections</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>jfree</groupId> <artifactId>jcommon</artifactId> <version>1.0.16</version> </dependency> <dependency> <groupId>colt</groupId> <artifactId>colt</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>com.github.rwl</groupId> <artifactId>optimization</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>dsol</groupId> <artifactId>dsol-xml</artifactId> <version>1.6.9</version> </dependency> <dependency> <groupId>org.apache.batik</groupId> <artifactId>com.springsource.org.apache.batik.ext.awt</artifactId> <version>1.7.0</version> <type>jar</type> </dependency> <dependency> <groupId>javax.help</groupId> <artifactId>javahelp</artifactId> <version>2.0.05</version> <type>jar</type> </dependency> <dependency> <groupId>com.jgoodies</groupId> <artifactId>jgoodies-looks</artifactId> <version>2.5.2</version> <type>jar</type> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <phase>verify</phase> <goals> <goal>javadoc</goal> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <configuration> <executable>gpg2.exe</executable> <useAgent>true</useAgent> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4</version> <configuration> <finalName>rs.jar</finalName> <descriptors> <descriptor>src/main/assembly/bundle.xml</descriptor> </descriptors> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>simulation</id> <url>http://www.simulation.tudelft.nl/maven</url> </repository> <repository> <id>codehaus-release</id> <name>Codehaus</name> <url>http://repository.codehaus.org</url> </repository> <repository> <id>sonatype-release</id> <name>Sonatype</name> <url>http://repository.sonatype.org/content/groups/public</url> </repository> <repository> <id>central</id> <name>Maven Repository Switchboard</name> <layout>default</layout> <url>http://repo1.maven.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> </project>