Ignore:
Timestamp:
12/12/12 12:33:06 (12 years ago)
Author:
pharms
Message:
  • harmonized formatting of all POMs
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-jfcmonitor/pom.xml

    r927 r1011  
    1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
    3         <modelVersion>4.0.0</modelVersion> 
    4         <groupId>de.ugoe.cs.autoquest</groupId> 
    5         <artifactId>autoquest-jfcmonitor</artifactId> 
    6         <version>0.0.1-SNAPSHOT</version> 
    7         <name>autoquest-jfcmonitor</name> 
    8         <licenses> 
    9                 <license> 
    10                         <name>The Apache Software License, Version 2.0</name> 
    11                         <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 
    12                 </license> 
    13         </licenses> 
    14         <scm> 
    15                 <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/autoquest-jfcmonitor</url> 
    16         </scm> 
    17         <dependencies> 
    18                 <dependency> 
    19                         <groupId>de.ugoe.cs</groupId> 
    20                         <artifactId>java-utils</artifactId> 
    21                         <version>0.0.1-SNAPSHOT</version> 
    22                 </dependency> 
    23         </dependencies> 
    24         <build> 
    25                 <plugins> 
    26                         <plugin> 
    27                                 <artifactId>maven-compiler-plugin</artifactId> 
    28                                 <version>2.3.2</version> 
    29                                 <configuration> 
    30                                         <source>1.6</source> 
    31                                         <target>1.6</target> 
    32                                 </configuration> 
    33                         </plugin> 
    34                         <plugin> 
    35                                 <groupId>org.apache.maven.plugins</groupId> 
    36                                 <artifactId>maven-jar-plugin</artifactId> 
    37                                 <configuration> 
    38                                         <archive> 
    39                                                 <manifest> 
    40                                                         <addClasspath>true</addClasspath> 
    41                                                         <classpathPrefix>lib/</classpathPrefix> 
    42                                                         <mainClass>de.ugoe.cs.autoquest.jfcmonitor.Runner</mainClass> 
    43                                                 </manifest> 
    44                                         </archive> 
    45                                 </configuration> 
    46                         </plugin> 
    47                         <plugin> 
    48                                 <artifactId>maven-assembly-plugin</artifactId> 
    49                                 <version>2.2-beta-2</version> 
    50                                 <configuration> 
    51                                         <descriptors> 
    52                                                 <descriptor>src/main/assembly/bin.xml</descriptor> 
    53                                         </descriptors> 
    54                                 </configuration> 
    55                                 <executions> 
    56                                         <execution> 
    57                                                 <id>make-assembly</id> 
    58                                                 <phase>package</phase> 
    59                                                 <goals> 
    60                                                         <goal>single</goal> 
    61                                                 </goals> 
    62                                         </execution> 
    63                                 </executions> 
    64                         </plugin> 
    65                 </plugins> 
    66         </build> 
     1<project 
     2    xmlns="http://maven.apache.org/POM/4.0.0" 
     3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 
     5> 
     6    <modelVersion>4.0.0</modelVersion> 
     7    <groupId>de.ugoe.cs.autoquest</groupId> 
     8    <artifactId>autoquest-jfcmonitor</artifactId> 
     9    <version>0.0.1-SNAPSHOT</version> 
     10    <name>autoquest-jfcmonitor</name> 
     11    <licenses> 
     12        <license> 
     13            <name>The Apache Software License, Version 2.0</name> 
     14            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 
     15        </license> 
     16    </licenses> 
     17    <scm> 
     18        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/autoquest-jfcmonitor</url> 
     19    </scm> 
     20    <dependencies> 
     21        <dependency> 
     22            <groupId>de.ugoe.cs</groupId> 
     23            <artifactId>java-utils</artifactId> 
     24            <version>0.0.1-SNAPSHOT</version> 
     25        </dependency> 
     26    </dependencies> 
     27    <build> 
     28        <plugins> 
     29            <plugin> 
     30                <artifactId>maven-compiler-plugin</artifactId> 
     31                <version>2.3.2</version> 
     32                <configuration> 
     33                    <source>1.6</source> 
     34                    <target>1.6</target> 
     35                </configuration> 
     36            </plugin> 
     37            <plugin> 
     38                <groupId>org.apache.maven.plugins</groupId> 
     39                <artifactId>maven-jar-plugin</artifactId> 
     40                <configuration> 
     41                    <archive> 
     42                        <manifest> 
     43                            <addClasspath>true</addClasspath> 
     44                            <classpathPrefix>lib/</classpathPrefix> 
     45                            <mainClass>de.ugoe.cs.autoquest.jfcmonitor.Runner</mainClass> 
     46                        </manifest> 
     47                    </archive> 
     48                </configuration> 
     49            </plugin> 
     50            <plugin> 
     51                <artifactId>maven-assembly-plugin</artifactId> 
     52                <version>2.2-beta-2</version> 
     53                <configuration> 
     54                    <descriptors> 
     55                        <descriptor>src/main/assembly/bin.xml</descriptor> 
     56                    </descriptors> 
     57                </configuration> 
     58                <executions> 
     59                    <execution> 
     60                        <id>make-assembly</id> 
     61                        <phase>package</phase> 
     62                        <goals> 
     63                            <goal>single</goal> 
     64                        </goals> 
     65                    </execution> 
     66                </executions> 
     67            </plugin> 
     68        </plugins> 
     69    </build> 
    6770</project> 
Note: See TracChangeset for help on using the changeset viewer.