swift-parser-text
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sourceforge.wife</groupId> <artifactId>swift-parser-text</artifactId> <version>1.1</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.sourceforge.wife</groupId> <artifactId>wife</artifactId> <version>1.0</version> </parent> <artifactId>swift-parser-text</artifactId> <packaging>jar</packaging> <version>1.1</version> <name>SWIFT (text) Parser Library </name> <url>http://wife.sourceforge.net</url> <ciManagement></ciManagement> <description> SWIFT Parser is a small library that reads SWIFT (http://www.swift.com) text messages and provides an little framework to work with messages. It is intended for developers who need to deal with swift messsages. A general model is created for the message. </description> <!-- <scm> <connection> </connection> </scm> --> <dependencies> <dependency> <groupId>net.sourceforge.wife</groupId> <artifactId>swift-model</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.13</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>changelog-maven-plugin</artifactId> <version>2.0-beta-1</version> <configuration> <type>tag</type> <tags> <tag implementation="java.lang.String"> release_1_5 </tag> <tag implementation="java.lang.String"> release_1_4 </tag> <tag implementation="java.lang.String"> release_1_3 </tag> <tag implementation="java.lang.String"> release_1_2 </tag> </tags> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javacc-maven-plugin</artifactId> <version>0.6.1-SNAPSHOT</version> <executions> <execution> <goals> <goal>javacc</goal> </goals> </execution> </executions> <configuration> <packageName>net.sourceforge.wife.swift.parser.text</packageName> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>2.0-beta-4</version> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> <version>1.0-alpha-5</version> </extension> </extensions> </build> <distributionManagement> <site> <id>website.sf</id> <url> scp://shell.sf.net/home/groups/s/sw/swift-parser/htdocs </url> </site> <repository> <id>mazinger</id> <name>Mazinger at Technisys</name> <url>scpexe://mazinger/usr/site/opt/maven2-repo</url> </repository> </distributionManagement> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>surefire-report-maven-plugin</artifactId> <version>2.0-beta-1</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jxr-maven-plugin</artifactId> <version>2.0-beta-1</version> </plugin> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clover-plugin</artifactId> <version>2.0</version> </plugin> --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.0-alpha-2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.0-beta-3</version> </plugin> <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>maven-jdepend-plugin</artifactId> <version>1.0-SNAPSHOT</version> </plugin> --> </plugins> </reporting> </project>