|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | +<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"> |
4 | 3 | <modelVersion>4.0.0</modelVersion>
|
5 | 4 | <groupId>net.jsign</groupId>
|
6 | 5 | <artifactId>jsign</artifactId>
|
7 | 6 | <name>Jsign - Code signing for Windows executables</name>
|
8 |
| - <version>1.3-SNAPSHOT</version> |
| 7 | + <version>1.3</version> |
9 | 8 | <packaging>jar</packaging>
|
10 | 9 |
|
11 | 10 | <inceptionYear>2012</inceptionYear>
|
|
34 | 33 | <connection>scm:git:https://github.com/ebourg/jsign.git</connection>
|
35 | 34 | <developerConnection>scm:git:git@github.com:ebourg/jsign.git</developerConnection>
|
36 | 35 | <url>https://github.com/ebourg/jsign</url>
|
| 36 | + <tag>1.3</tag> |
37 | 37 | </scm>
|
38 | 38 |
|
39 | 39 | <distributionManagement>
|
|
184 | 184 | </goals>
|
185 | 185 | <configuration>
|
186 | 186 | <target>
|
187 |
| - <taskdef name="redline" classname="org.freecompany.redline.ant.RedlineTask" classpath="maven.plugin.classpath"/> |
| 187 | + <taskdef name="redline" classname="org.freecompany.redline.ant.RedlineTask" classpath="maven.plugin.classpath" /> |
188 | 188 |
|
189 |
| - <redline destination="${project.build.directory}" |
190 |
| - group="Development/Tools" |
191 |
| - name="${project.artifactId}" |
192 |
| - version="${project.version}" |
193 |
| - url="${project.url}" |
194 |
| - preinstallscript="src/deb/control/preinst" |
195 |
| - postinstallscript="src/deb/control/postinst" |
196 |
| - preuninstallscript="src/deb/control/prerm"> |
197 |
| - <tarfileset dir="src/deb/data"/> |
| 189 | + <redline destination="${project.build.directory}" group="Development/Tools" name="${project.artifactId}" version="${project.version}" url="${project.url}" preinstallscript="src/deb/control/preinst" postinstallscript="src/deb/control/postinst" preuninstallscript="src/deb/control/prerm"> |
| 190 | + <tarfileset dir="src/deb/data" /> |
198 | 191 | <tarfileset dir="${project.build.directory}" prefix="/usr/share/${project.artifactId}">
|
199 |
| - <include name="${project.build.finalName}.jar"/> |
| 192 | + <include name="${project.build.finalName}.jar" /> |
200 | 193 | </tarfileset>
|
201 |
| - <depends name="java" version=">= 1.6"/> |
| 194 | + <depends name="java" version=">= 1.6" /> |
202 | 195 | </redline>
|
203 | 196 | </target>
|
204 | 197 | </configuration>
|
|
0 commit comments