Changeset 757 for trunk/quest-misc


Ignore:
Timestamp:
09/04/12 10:39:27 (12 years ago)
Author:
pharms
Message:
  • created a parent pom project
Location:
trunk/quest-misc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-misc/.classpath

    r457 r757  
    11<?xml version="1.0" encoding="UTF-8"?> 
    22<classpath> 
    3         <classpathentry kind="src" path="src/main/java"/> 
    4         <classpathentry kind="src" path="src/main/resources"/> 
     3        <classpathentry kind="src" output="target/classes" path="src/main/java"> 
     4                <attributes> 
     5                        <attribute name="optional" value="true"/> 
     6                        <attribute name="maven.pomderived" value="true"/> 
     7                </attributes> 
     8        </classpathentry> 
     9        <classpathentry including="**/*.java" kind="src" path="src/main/resources"/> 
     10        <classpathentry kind="src" output="target/test-classes" path="src/test/java"> 
     11                <attributes> 
     12                        <attribute name="optional" value="true"/> 
     13                        <attribute name="maven.pomderived" value="true"/> 
     14                </attributes> 
     15        </classpathentry> 
    516        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"> 
    617                <attributes> 
  • trunk/quest-misc/pom.xml

    r671 r757  
    11<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/xsd/maven-4.0.0.xsd"> 
     2  <parent> 
     3    <groupId>de.ugoe.cs.quest</groupId> 
     4    <artifactId>quest</artifactId> 
     5    <version>0.0.1-SNAPSHOT</version> 
     6  </parent> 
    27  <modelVersion>4.0.0</modelVersion> 
    3   <groupId>de.ugoe.cs.quest</groupId> 
    48  <artifactId>quest-misc</artifactId> 
    5   <version>0.0.1-SNAPSHOT</version> 
    69  <name>quest-misc</name> 
    710  <scm> 
    8     <url>https://www.trex.informatik.uni-goettingen.de/svn/swephd/pharms/tasktree/trunk/quest-misc</url> 
     11    <url>${quest-scm-trunk-dir}/quest-misc</url> 
    912  </scm> 
    1013  <dependencies> 
     
    1417      <version>0.0.1-SNAPSHOT</version> 
    1518    </dependency> 
    16     <dependency> 
    17       <groupId>junit</groupId> 
    18       <artifactId>junit</artifactId> 
    19       <version>4.8.1</version> 
    20       <scope>test</scope> 
    21     </dependency> 
    2219  </dependencies> 
    23   <distributionManagement> 
    24     <snapshotRepository> 
    25       <id>quest-snapshots</id> 
    26       <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest-snapshots</url> 
    27     </snapshotRepository> 
    28   </distributionManagement> 
    29   <build> 
    30     <plugins> 
    31       <plugin> 
    32         <artifactId>maven-compiler-plugin</artifactId> 
    33         <version>2.5.1</version> 
    34         <configuration> 
    35           <source>1.6</source> 
    36           <target>1.6</target> 
    37         </configuration> 
    38       </plugin> 
    39     </plugins> 
    40   </build> 
    4120</project> 
Note: See TracChangeset for help on using the changeset viewer.