Changeset 861


Ignore:
Timestamp:
10/12/12 11:33:41 (12 years ago)
Author:
pharms
Message:
  • formatted source code
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-utils/pom.xml

    r860 r861  
    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</artifactId> 
    6         <version>0.0.1-SNAPSHOT</version> 
    7         <name>java-utils</name> 
    8         <scm> 
    9                 <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/java-utils</url> 
    10         </scm> 
    11         <dependencies> 
    12                 <dependency> 
    13                         <groupId>org.apache.commons</groupId> 
    14                         <artifactId>commons-io</artifactId> 
    15                         <version>1.3.2</version> 
    16                 </dependency> 
    17                 <dependency> 
    18         <groupId>commons-lang</groupId> 
    19         <artifactId>commons-lang</artifactId> 
    20         <version>2.1</version> 
    21       </dependency> 
    22         </dependencies> 
    23         <build> 
    24                 <plugins> 
    25                         <plugin> 
    26                                 <artifactId>maven-compiler-plugin</artifactId> 
    27                                 <version>2.3.2</version> 
    28                                 <configuration> 
    29                                         <source>1.6</source> 
    30                                         <target>1.6</target> 
    31                                 </configuration> 
    32                         </plugin> 
    33                 </plugins> 
    34         </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</artifactId> 
     9    <version>0.0.1-SNAPSHOT</version> 
     10    <name>java-utils</name> 
     11    <scm> 
     12        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/java-utils</url> 
     13    </scm> 
     14    <dependencies> 
     15        <dependency> 
     16            <groupId>org.apache.commons</groupId> 
     17            <artifactId>commons-io</artifactId> 
     18            <version>1.3.2</version> 
     19        </dependency> 
     20        <dependency> 
     21            <groupId>commons-lang</groupId> 
     22            <artifactId>commons-lang</artifactId> 
     23            <version>2.1</version> 
     24        </dependency> 
     25    </dependencies> 
     26    <build> 
     27        <plugins> 
     28            <plugin> 
     29                <artifactId>maven-compiler-plugin</artifactId> 
     30                <version>2.3.2</version> 
     31                <configuration> 
     32                    <source>1.6</source> 
     33                    <target>1.6</target> 
     34                </configuration> 
     35            </plugin> 
     36        </plugins> 
     37    </build> 
    3538</project> 
Note: See TracChangeset for help on using the changeset viewer.