Sha256: 7b9c4daedb28152be717962ce5b0e51e1608454ed6c4828eff65c6067d9d7d6f
Contents?: true
Size: 1.79 KB
Versions: 4
Compression:
Stored size: 1.79 KB
Contents
<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"> <parent> <artifactId>project</artifactId> <groupId>org.mortbay.jetty</groupId> <version>6.1.22</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-deb</artifactId> <version>6.1.22</version> <name>Jetty Deb Packages</name> <packaging>pom</packaging> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>build debian</id> <phase>install</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <ant antfile="anttasks.xml" target="build-deb"> <property name="project.build.directory" value="${project.build.directory}" /> <property name="project.groupId" value="${project.groupId}" /> <property name="project.artifactId" value="${project.artifactId}" /> <property name="project.version" value="${project.version}" /> </ant> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
miso-java-0.1.5 | jetty/contrib/debian/pom.xml |
miso-java-0.1.4 | jetty/contrib/debian/pom.xml |
miso-java-0.1.3 | jetty/contrib/debian/pom.xml |
miso-java-0.1.2 | jetty/contrib/debian/pom.xml |