reformat pom and set name to follow convention

This commit is contained in:
Jesse McConnell 2012-08-09 12:51:44 -05:00
parent 5e97db85e4
commit aafa593ac4
1 changed files with 59 additions and 65 deletions

View File

@ -1,68 +1,62 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<project <project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<artifactId>jetty-project</artifactId> <artifactId>jetty-project</artifactId>
<groupId>org.eclipse.jetty</groupId> <groupId>org.eclipse.jetty</groupId>
<version>9.0.0-SNAPSHOT</version> <version>9.0.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>jetty-plugins</artifactId> <artifactId>jetty-plugins</artifactId>
<name>jetty-plugins</name> <name>Jetty :: Plugin Support</name>
<description>The jetty plugin artifact.</description> <description>The jetty plugin artifact.</description>
<url>${jetty.url}</url> <build>
<properties> <plugins>
<aetherVersion>1.13.1</aetherVersion> <plugin>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <groupId>org.apache.maven.plugins</groupId>
</properties> <artifactId>maven-jar-plugin</artifactId>
<build> </plugin>
<plugins> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId>
<artifactId>maven-jar-plugin</artifactId> <configuration>
</plugin> <descriptorRefs>
<plugin> <descriptorRef>jar-with-dependencies</descriptorRef>
<groupId>org.apache.maven.plugins</groupId> </descriptorRefs>
<artifactId>maven-assembly-plugin</artifactId> <archive>
<configuration> <manifest>
<descriptorRefs> <mainClass>org.eclipse.jetty.plugins.Main</mainClass>
<descriptorRef>jar-with-dependencies</descriptorRef> </manifest>
</descriptorRefs> </archive>
<archive> </configuration>
<manifest> <executions>
<mainClass>org.eclipse.jetty.plugins.Main</mainClass> <execution>
</manifest> <phase>package</phase>
</archive> <goals>
</configuration> <goal>single</goal>
<executions> </goals>
<execution> </execution>
<phase>package</phase> </executions>
<goals> </plugin>
<goal>single</goal> </plugins>
</goals> </build>
</execution> <dependencies>
</executions> <dependency>
</plugin> <groupId>junit</groupId>
</plugins> <artifactId>junit</artifactId>
</build> <scope>test</scope>
</dependency>
<dependencies> <dependency>
<dependency> <groupId>org.hamcrest</groupId>
<groupId>junit</groupId> <artifactId>hamcrest-all</artifactId>
<artifactId>junit</artifactId> <version>1.0</version> <!-- TODO: version should be inherited from parent pom.xml -->
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.hamcrest</groupId> <groupId>org.mockito</groupId>
<artifactId>hamcrest-all</artifactId> <artifactId>mockito-core</artifactId>
<version>1.0</version> <!-- TODO: version should be inherited from parent pom.xml --> <scope>test</scope>
<scope>test</scope> </dependency>
</dependency> </dependencies>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project> </project>