forked from pool/jcifs
94 lines
2.4 KiB
Plaintext
94 lines
2.4 KiB
Plaintext
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>jcifs</groupId>
|
|
<artifactId>jcifs</artifactId>
|
|
<version>1.3.17</version>
|
|
<packaging>jar</packaging>
|
|
<name>jCIFS</name>
|
|
<url>http://jcifs.samba.org</url>
|
|
<description>JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java</description>
|
|
<licenses>
|
|
<license>
|
|
<name>GNU Lesser General Public License, version 2.1</name>
|
|
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<url>http://jcifs.samba.org/src/</url>
|
|
</scm>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>${project.basedir}/src</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>src</directory>
|
|
<includes>
|
|
<include>**/*.map</include>
|
|
<include>**/*.css</include>
|
|
<include>**/*.idl</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.1.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.8.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.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>mike</id>
|
|
<name>Michael B. Allen</name>
|
|
<email>ioplex@gmail.com</email>
|
|
</developer>
|
|
</developers>
|
|
</project>
|