butterfly-container
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>edu.mit.simile</groupId> <artifactId>butterfly-container</artifactId> <version>1.0</version> </dependency>
<?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>edu.mit.simile</groupId> <artifactId>butterfly-container</artifactId> <version>1.0</version> <packaging>pom</packaging> <name>SIMILE Butterfly</name> <description>Butterfly is a modular web application framework</description> <url>https://code.google.com/p/simile-butterfly/</url> <inceptionYear>2007</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Stefano Mazzocchi</name> </developer> <developer> <name>David Huynh</name> </developer> </developers> <contributors> <contributor> <name>Ryan Lee</name> </contributor> </contributors> <modules> <module>main</module> </modules> <scm> <connection>scm:svn:http://simile-butterfly.googlecode.com/svn/trunk/</connection> <developerConnection>scm:svn:https://simile-butterfly.googlecode.com/svn/trunk/</developerConnection> <url>http://simile-butterfly.googlecode.com/svn/trunk/</url> </scm> <issueManagement> <system>Google Code</system> <url>https://code.google.com/p/simile-butterfly/issues/list</url> </issueManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.8</version> <configuration> <downloadSources>true</downloadSources> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.2</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <reporting> <outputDirectory>${project.build.directory}/docs</outputDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <aggregate>true</aggregate> <source>1.6</source> <reportOutputDir>${project.reporting.outputDirectory}/apidoc</reportOutputDir> <groups> <group> <title>Butterfly API</title> <packages>edu.mit.simile.butterfly*</packages> </group> </groups> <links> <link>http://java.sun.com/j2se/1.6.0/docs/api</link> <link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link> <link>http://jakarta.apache.org/commons/dbcp/apidocs/</link> <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link> <link>http://jakarta.apache.org/commons/httpclient/apidocs/</link> <link>http://jakarta.apache.org/commons/logging/api/</link> <link>http://jakarta.apache.org/commons/pool/apidocs/</link> <link>http://jakarta.apache.org/regexp/apidocs/</link> <link>http://jakarta.apache.org/velocity/api/</link> <link>http://logging.apache.org/log4j/docs/api/</link> </links> </configuration> </plugin> </plugins> </reporting> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>release</id> <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> <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.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>