Home | History | Annotate | Download | only in 1.0.1
      1 
      2 <project 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 
      8     <groupId>org.abego.treelayout</groupId>
      9     <artifactId>org.abego.treelayout.core</artifactId>
     10     <version>1.0.1</version>
     11     <packaging>jar</packaging>
     12 
     13     <name>abego TreeLayout Core</name>
     14     <description>Efficient and customizable TreeLayout Algorithm in Java.</description>
     15     <url>http://code.google.com/p/treelayout/</url>
     16 
     17     <parent>
     18         <groupId>org.sonatype.oss</groupId>
     19         <artifactId>oss-parent</artifactId>
     20         <version>7</version>
     21     </parent>
     22 
     23     <licenses>
     24         <license>
     25             <name>BSD 3-Clause "New" or "Revised" License (BSD-3-Clause)</name>
     26             <url>http://treelayout.googlecode.com/files/LICENSE.TXT</url>
     27             <distribution>repo</distribution>
     28         </license>
     29     </licenses>
     30 
     31     <scm>
     32         <url>http://code.google.com/p/treelayout/source/browse/</url>
     33         <connection>scm:svn:http://treelayout.googlecode.com/svn/</connection>
     34     </scm>
     35 
     36     <developers>
     37         <developer>
     38             <id>ub</id>
     39             <name>Udo Borkowski</name>
     40             <email>ub (a] abego.org</email>
     41             <organization>abego Software GmbH, Germany</organization>
     42             <organizationUrl>http://abego-software.de</organizationUrl>
     43         </developer>
     44     </developers>
     45 
     46     <organization>
     47         <name>abego Software GmbH, Germany</name>
     48         <url>http://abego-software.de</url>
     49     </organization>
     50 
     51     <properties>
     52         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     53     </properties>
     54 
     55     <build>
     56         <plugins>
     57             <plugin>
     58                 <groupId>org.apache.maven.plugins</groupId>
     59                 <artifactId>maven-compiler-plugin</artifactId>
     60                 <version>2.3.2</version>
     61                 <configuration>
     62                     <source>1.5</source>
     63                     <target>1.5</target>
     64                 </configuration>
     65             </plugin>
     66 
     67             <plugin>
     68                 <groupId>org.apache.maven.plugins</groupId>
     69                 <artifactId>maven-jar-plugin</artifactId>
     70                 <version>2.3.2</version>
     71                 <configuration>
     72                     <archive>
     73                         <manifest>
     74                             <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
     75                             <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
     76                         </manifest>
     77                     </archive>
     78                 </configuration>
     79             </plugin>
     80         </plugins>
     81     </build>
     82 
     83     <dependencies>
     84         <dependency>
     85             <groupId>junit</groupId>
     86             <artifactId>junit</artifactId>
     87             <version>4.8.2</version>
     88             <scope>test</scope>
     89         </dependency>
     90     </dependencies>
     91 </project>
     92