server/java/pom.xml
changeset 316 242510015401
parent 312 d828c69d860d
child 375 c313de191f2b
equal deleted inserted replaced
315:8c85ab4cf3aa 316:242510015401
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0                              http://maven.apache.org/maven-v4_0_0.xsd">
       
     3     <modelVersion>4.0.0</modelVersion>
       
     4 
       
     5     <groupId>org.iri_research.renkan</groupId>
       
     6     <artifactId>renkan</artifactId>
       
     7     <packaging>pom</packaging>
       
     8     <version>0.7.11</version>
       
     9     <name>Renkan project</name>
       
    10 
       
    11     <modules>
       
    12         <module>renkan-core</module>
       
    13         <module>renkan-web</module>
       
    14         <module>renkan-management</module>
       
    15     </modules>
       
    16 
       
    17     <build>
       
    18         <pluginManagement>
       
    19             <plugins>
       
    20                 <plugin>
       
    21                     <groupId>org.apache.maven.plugins</groupId>
       
    22                     <artifactId>maven-compiler-plugin</artifactId>
       
    23                     <configuration>
       
    24                         <source>1.7</source>
       
    25                         <target>1.7</target>
       
    26                     </configuration>
       
    27                 </plugin>
       
    28             </plugins>
       
    29         </pluginManagement>
       
    30     </build>
       
    31 
       
    32     <dependencies>
       
    33         <dependency>
       
    34             <groupId>junit</groupId>
       
    35             <artifactId>junit</artifactId>
       
    36             <version>3.8.1</version>
       
    37             <scope>test</scope>
       
    38         </dependency>
       
    39     </dependencies>
       
    40 </project>