You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.1 KiB
62 lines
2.1 KiB
<?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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>pt.tumba</groupId>
|
|
<artifactId>webcat-swf</artifactId>
|
|
<version>0.1</version>
|
|
<packaging>jar</packaging>
|
|
<name>WebCat swf parser</name>
|
|
<description>extract of swf parser from WebCat source package</description>
|
|
<parent>
|
|
<groupId>net.yacy</groupId>
|
|
<artifactId>extlib</artifactId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
<url>http://webcat.sourceforge.net/</url>
|
|
<licenses>
|
|
<license>
|
|
<name>BSD</name>
|
|
<url>http://opensource.org/licenses/bsd-license.php</url>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<url>http://webcat.cvs.sourceforge.net/viewvc/webcat/</url>
|
|
</scm>
|
|
<developers>
|
|
<developer>
|
|
<name>Bruno Martins</name> <!-- WebCat -->
|
|
</developer>
|
|
<developer>
|
|
<name>David N. Main</name> <!-- JavaSWF2 -->
|
|
<url>http://anotherbigidea.com/</url>
|
|
</developer>
|
|
</developers>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
</properties>
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-compress</artifactId>
|
|
<version>1.20</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.tukaani</groupId>
|
|
<artifactId>xz</artifactId>
|
|
<version>1.8</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.adobe.xmp</groupId>
|
|
<artifactId>xmpcore</artifactId>
|
|
<version>5.1.2</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |