babel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>edu.mit.simile</groupId>
<artifactId>babel</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>babel</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>SIMILE Babel</name>
<description>Babel is a web interface for converting between a variety of data formats.</description>
<url>https://github.com/zepheira/babel</url>
<inceptionYear>2006</inceptionYear>
<organization>
<name>MIT SIMILE Project</name>
<url>http://simile.mit.edu/</url>
</organization>
<developers>
<developer>
<id>dfhuynh</id>
<name>David Huynh</name>
<email>dfhuynh@gmail.com</email>
</developer>
<developer>
<id>ryanlee</id>
<name>Ryan Lee</name>
<email>ryanlee@zepheira.com</email>
</developer>
</developers>
<licenses>
<license>
<name>BSD</name>
<url>https://raw.githubusercontent.com/zepheira/babel/master/LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>interfaces</module>
<module>engine</module>
<module>converters</module>
</modules>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/zepheira/babel/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:zepheira/babel.git</connection>
<developerConnection>scm:git:git@github.com:zepheira/babel.git</developerConnection>
<url>git@github.com:zepheira/babel.git</url>
</scm>
<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>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0</version>
</extension>
</extensions>
</build>
<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>