jfasta
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.jfasta</groupId> <artifactId>jfasta</artifactId> <version>2.2.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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>net.sf.jfasta</groupId> <artifactId>jfasta</artifactId> <name>JFASTA</name> <version>2.2.0</version> <description>Java implementation for the FASTA file format.</description> <url>http://jfasta.sourceforge.net/</url> <issueManagement> <system>JIRA</system> <url>http://akerner.de:8090/browse/JFASTA</url> </issueManagement> <properties> <jdk.version>1.5</jdk.version> </properties> <developers> <developer> <id>kerner</id> <name>Alexander Kerner</name> <email>alexanderkerner24@gmail.com</email> <roles> <role>Project Manager</role> <role>Architect</role> </roles> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>git://git.code.sf.net/p/jfasta/code</url> <connection>scm:git:git://jgit.code.sf.net/p/jfasta/code</connection> <developerConnection>scm:git:ssh://akerner@git.code.sf.net/p/jfasta/code</developerConnection> </scm> <distributionManagement> <site> <id>sourceforge-kerner-utils</id> <url>scp://shell.sourceforge.net/home/project-web/jfasta/htdocs </url> </site> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.2</version> <dependencies> <dependency><!-- add support for ssh/scp --> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>1.0</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.4</version> <executions> <execution> <goals> <goal>install</goal> </goals> <configuration> <createChecksum>true</createChecksum> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>dist-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version> <Bundle-Description>${project.description}</Bundle-Description> <Implementation-Version>${project.version}</Implementation-Version> </manifestEntries> <manifestFile>META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>3.3</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.sf.kerner-utils-io</groupId> <artifactId>kerner-utils-io</artifactId> <version>0.5.3</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> </project>