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/java-utils-test/pom.xml

    r935 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</groupId> 
    5         <artifactId>java-utils-test</artifactId> 
    6         <version>0.0.1-SNAPSHOT</version> 
    7         <name>java-utils-test</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/java-utils-test</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                         <scope>test</scope> 
    23                 </dependency> 
    24                 <dependency> 
    25                         <groupId>junit</groupId> 
    26                         <artifactId>junit</artifactId> 
    27                         <version>4.8.1</version> 
    28                         <scope>test</scope> 
    29                 </dependency> 
    30                 <dependency> 
    31                         <groupId>junit-addons</groupId> 
    32                         <artifactId>junit-addons</artifactId> 
    33                         <version>1.4</version> 
    34                 </dependency> 
    35         </dependencies> 
    36         <build> 
    37                 <pluginManagement> 
    38                         <plugins> 
    39                                 <plugin> 
    40                                         <groupId>org.eclipse.m2e</groupId> 
    41                                         <artifactId>lifecycle-mapping</artifactId> 
    42                                         <version>1.0.0</version> 
    43                                         <configuration> 
    44                                                 <lifecycleMappingMetadata> 
    45                                                         <pluginExecutions> 
    46                                                                 <pluginExecution> 
    47                                                                         <pluginExecutionFilter> 
    48                                                                                 <groupId>org.apache.maven.plugins</groupId> 
    49                                                                                 <artifactId>maven-dependency-plugin</artifactId> 
    50                                                                                 <versionRange>[1.0.0,)</versionRange> 
    51                                                                                 <goals> 
    52                                                                                         <goal>unpack</goal> 
    53                                                                                 </goals> 
    54                                                                         </pluginExecutionFilter> 
    55                                                                         <action> 
    56                                                                                 <ignore /> 
    57                                                                         </action> 
    58                                                                 </pluginExecution> 
    59                                                                 <pluginExecution> 
    60                                                                         <pluginExecutionFilter> 
    61                                                                                 <groupId>org.codehaus.mojo</groupId> 
    62                                                                                 <artifactId>emma-maven-plugin</artifactId> 
    63                                                                                 <versionRange>[1.0-alpha-3,)</versionRange> 
    64                                                                                 <goals> 
    65                                                                                         <goal>emma</goal> 
    66                                                                                 </goals> 
    67                                                                         </pluginExecutionFilter> 
    68                                                                         <action> 
    69                                                                                 <ignore /> 
    70                                                                         </action> 
    71                                                                 </pluginExecution> 
    72                                                         </pluginExecutions> 
    73                                                 </lifecycleMappingMetadata> 
    74                                         </configuration> 
    75                                 </plugin> 
    76                         </plugins> 
    77                 </pluginManagement> 
    78                 <plugins> 
    79                         <plugin> 
    80                                 <groupId>org.apache.maven.plugins</groupId> 
    81                                 <artifactId>maven-compiler-plugin</artifactId> 
    82                                 <version>2.3.2</version> 
    83                                 <configuration> 
    84                                         <source>1.6</source> 
    85                                         <target>1.6</target> 
    86                                 </configuration> 
    87                         </plugin> 
    88                         <plugin> 
    89                                 <groupId>org.apache.maven.plugins</groupId> 
    90                                 <artifactId>maven-dependency-plugin</artifactId> 
    91                                 <version>2.4</version> 
    92                                 <executions> 
    93                                         <execution> 
    94                                                 <id>unpack</id> 
    95                                                 <phase>process-classes</phase> 
    96                                                 <goals> 
    97                                                         <goal>unpack</goal> 
    98                                                 </goals> 
    99                                                 <configuration> 
    100                                                         <artifactItems> 
    101                                                                 <artifactItem> 
    102                                                                         <groupId>de.ugoe.cs</groupId> 
    103                                                                         <artifactId>java-utils</artifactId> 
    104                                                                         <version>0.0.1-SNAPSHOT</version> 
    105                                                                         <outputDirectory>${project.build.directory}/classes</outputDirectory> 
    106                                                                 </artifactItem> 
    107                                                         </artifactItems> 
    108                                                 </configuration> 
    109                                         </execution> 
    110                                 </executions> 
    111                         </plugin> 
    112                         <plugin> 
    113                                 <groupId>org.codehaus.mojo</groupId> 
    114                                 <artifactId>emma-maven-plugin</artifactId> 
    115                                 <version>1.0-alpha-3</version> 
    116                                 <inherited>true</inherited> 
    117                                 <executions> 
    118                                         <execution> 
    119                                                 <phase>process-classes</phase> 
    120                                                 <goals> 
    121                                                         <goal>emma</goal> 
    122                                                 </goals> 
    123                                         </execution> 
    124                                 </executions> 
    125                         </plugin> 
    126                         <plugin> 
    127                                 <groupId>org.apache.maven.plugins</groupId> 
    128                                 <artifactId>maven-jar-plugin</artifactId> 
    129                                 <version>2.3.2</version> 
    130                                 <executions> 
    131                                         <execution> 
    132                                                 <goals> 
    133                                                         <goal>test-jar</goal> 
    134                                                 </goals> 
    135                                         </execution> 
    136                                 </executions> 
    137                         </plugin> 
    138                 </plugins> 
    139         </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</groupId> 
     8    <artifactId>java-utils-test</artifactId> 
     9    <version>0.0.1-SNAPSHOT</version> 
     10    <name>java-utils-test</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/java-utils-test</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            <scope>test</scope> 
     26        </dependency> 
     27        <dependency> 
     28            <groupId>junit</groupId> 
     29            <artifactId>junit</artifactId> 
     30            <version>4.8.1</version> 
     31            <scope>test</scope> 
     32        </dependency> 
     33        <dependency> 
     34            <groupId>junit-addons</groupId> 
     35            <artifactId>junit-addons</artifactId> 
     36            <version>1.4</version> 
     37        </dependency> 
     38    </dependencies> 
     39    <build> 
     40        <pluginManagement> 
     41            <plugins> 
     42                <plugin> 
     43                    <groupId>org.eclipse.m2e</groupId> 
     44                    <artifactId>lifecycle-mapping</artifactId> 
     45                    <version>1.0.0</version> 
     46                    <configuration> 
     47                        <lifecycleMappingMetadata> 
     48                            <pluginExecutions> 
     49                                <pluginExecution> 
     50                                    <pluginExecutionFilter> 
     51                                        <groupId>org.apache.maven.plugins</groupId> 
     52                                        <artifactId>maven-dependency-plugin</artifactId> 
     53                                        <versionRange>[1.0.0,)</versionRange> 
     54                                        <goals> 
     55                                            <goal>unpack</goal> 
     56                                        </goals> 
     57                                    </pluginExecutionFilter> 
     58                                    <action> 
     59                                        <ignore /> 
     60                                    </action> 
     61                                </pluginExecution> 
     62                                <pluginExecution> 
     63                                    <pluginExecutionFilter> 
     64                                        <groupId>org.codehaus.mojo</groupId> 
     65                                        <artifactId>emma-maven-plugin</artifactId> 
     66                                        <versionRange>[1.0-alpha-3,)</versionRange> 
     67                                        <goals> 
     68                                            <goal>emma</goal> 
     69                                        </goals> 
     70                                    </pluginExecutionFilter> 
     71                                    <action> 
     72                                        <ignore /> 
     73                                    </action> 
     74                                </pluginExecution> 
     75                            </pluginExecutions> 
     76                        </lifecycleMappingMetadata> 
     77                    </configuration> 
     78                </plugin> 
     79            </plugins> 
     80        </pluginManagement> 
     81        <plugins> 
     82            <plugin> 
     83                <groupId>org.apache.maven.plugins</groupId> 
     84                <artifactId>maven-compiler-plugin</artifactId> 
     85                <version>2.3.2</version> 
     86                <configuration> 
     87                    <source>1.6</source> 
     88                    <target>1.6</target> 
     89                </configuration> 
     90            </plugin> 
     91            <plugin> 
     92                <groupId>org.apache.maven.plugins</groupId> 
     93                <artifactId>maven-dependency-plugin</artifactId> 
     94                <version>2.4</version> 
     95                <executions> 
     96                    <execution> 
     97                        <id>unpack</id> 
     98                        <phase>process-classes</phase> 
     99                        <goals> 
     100                            <goal>unpack</goal> 
     101                        </goals> 
     102                        <configuration> 
     103                            <artifactItems> 
     104                                <artifactItem> 
     105                                    <groupId>de.ugoe.cs</groupId> 
     106                                    <artifactId>java-utils</artifactId> 
     107                                    <version>0.0.1-SNAPSHOT</version> 
     108                                    <outputDirectory>${project.build.directory}/classes</outputDirectory> 
     109                                </artifactItem> 
     110                            </artifactItems> 
     111                        </configuration> 
     112                    </execution> 
     113                </executions> 
     114            </plugin> 
     115            <plugin> 
     116                <groupId>org.codehaus.mojo</groupId> 
     117                <artifactId>emma-maven-plugin</artifactId> 
     118                <version>1.0-alpha-3</version> 
     119                <inherited>true</inherited> 
     120                <executions> 
     121                    <execution> 
     122                        <phase>process-classes</phase> 
     123                        <goals> 
     124                            <goal>emma</goal> 
     125                        </goals> 
     126                    </execution> 
     127                </executions> 
     128            </plugin> 
     129            <plugin> 
     130                <groupId>org.apache.maven.plugins</groupId> 
     131                <artifactId>maven-jar-plugin</artifactId> 
     132                <version>2.3.2</version> 
     133                <executions> 
     134                    <execution> 
     135                        <goals> 
     136                            <goal>test-jar</goal> 
     137                        </goals> 
     138                    </execution> 
     139                </executions> 
     140            </plugin> 
     141        </plugins> 
     142    </build> 
    140143</project> 
Note: See TracChangeset for help on using the changeset viewer.