Ignore:
Timestamp:
10/17/12 10:29:31 (12 years ago)
Author:
sherbold
Message:
  • added copyright under the Apache License, Version 2.0
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest/pom.xml

    r920 r927  
    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.autoquest</groupId> 
    8     <artifactId>autoquest</artifactId> 
    9     <version>0.0.1-SNAPSHOT</version> 
    10     <name>autoquest</name> 
    11     <packaging>pom</packaging> 
    12     <properties> 
    13         <autoquest-scm-trunk-dir>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk</autoquest-scm-trunk-dir> 
    14     </properties> 
    15     <scm> 
    16         <url>${autoquest-scm-trunk-dir}/autoquest</url> 
    17     </scm> 
    18     <distributionManagement> 
    19         <snapshotRepository> 
    20             <id>autoquest-snapshots</id> 
    21             <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url> 
    22         </snapshotRepository> 
    23         <repository> 
    24             <id>autoquest</id> 
    25             <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest</url> 
    26         </repository> 
    27     </distributionManagement> 
    28     <repositories> 
    29         <repository> 
    30             <id>autoquest-thirdparty-repo</id> 
    31             <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url> 
    32         </repository> 
    33     </repositories> 
    34     <build> 
    35         <plugins> 
    36             <plugin> 
    37                 <artifactId>maven-compiler-plugin</artifactId> 
    38                 <version>2.3.2</version> 
    39                 <configuration> 
    40                     <source>1.6</source> 
    41                     <target>1.6</target> 
    42                 </configuration> 
    43             </plugin> 
    44             <plugin> 
    45                 <artifactId>maven-source-plugin</artifactId> 
    46                 <version>2.1.1</version> 
    47                 <executions> 
    48                     <execution> 
    49                         <id>bundle-sources</id> 
    50                         <phase>package</phase> 
    51                         <goals> 
    52                             <!-- produce source artifact for main project sources --> 
    53                             <goal>jar-no-fork</goal> 
    54                         </goals> 
    55                     </execution> 
    56                 </executions> 
    57             </plugin> 
    58         </plugins> 
    59     </build> 
    60     <reporting> 
    61         <plugins> 
    62             <plugin> 
    63                 <groupId>org.apache.maven.plugins</groupId> 
    64                 <artifactId>maven-javadoc-plugin</artifactId> 
    65                 <version>2.8.1</version> 
    66                 <configuration> 
    67                     <!-- switch on dependency-driven aggregation --> 
    68                     <includeDependencySources>true</includeDependencySources> 
     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.autoquest</groupId> 
     5        <artifactId>autoquest</artifactId> 
     6        <version>0.0.1-SNAPSHOT</version> 
     7        <name>autoquest</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        <packaging>pom</packaging> 
     15        <properties> 
     16                <autoquest-scm-trunk-dir>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk</autoquest-scm-trunk-dir> 
     17        </properties> 
     18        <scm> 
     19                <url>${autoquest-scm-trunk-dir}/autoquest</url> 
     20        </scm> 
     21        <distributionManagement> 
     22                <snapshotRepository> 
     23                        <id>autoquest-snapshots</id> 
     24                        <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url> 
     25                </snapshotRepository> 
     26                <repository> 
     27                        <id>autoquest</id> 
     28                        <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest</url> 
     29                </repository> 
     30        </distributionManagement> 
     31        <repositories> 
     32                <repository> 
     33                        <id>autoquest-thirdparty-repo</id> 
     34                        <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url> 
     35                </repository> 
     36        </repositories> 
     37        <build> 
     38                <plugins> 
     39                        <plugin> 
     40                                <artifactId>maven-compiler-plugin</artifactId> 
     41                                <version>2.3.2</version> 
     42                                <configuration> 
     43                                        <source>1.6</source> 
     44                                        <target>1.6</target> 
     45                                </configuration> 
     46                        </plugin> 
     47                        <plugin> 
     48                                <artifactId>maven-source-plugin</artifactId> 
     49                                <version>2.1.1</version> 
     50                                <executions> 
     51                                        <execution> 
     52                                                <id>bundle-sources</id> 
     53                                                <phase>package</phase> 
     54                                                <goals> 
     55                                                        <!-- produce source artifact for main project sources --> 
     56                                                        <goal>jar-no-fork</goal> 
     57                                                </goals> 
     58                                        </execution> 
     59                                </executions> 
     60                        </plugin> 
     61                </plugins> 
     62        </build> 
     63        <reporting> 
     64                <plugins> 
     65                        <plugin> 
     66                                <groupId>org.apache.maven.plugins</groupId> 
     67                                <artifactId>maven-javadoc-plugin</artifactId> 
     68                                <version>2.8.1</version> 
     69                                <configuration> 
     70                                        <!-- switch on dependency-driven aggregation --> 
     71                                        <includeDependencySources>true</includeDependencySources> 
    6972 
    70                     <dependencySourceIncludes> 
    71                         <dependencySourceInclude>de.ugoe.cs.*:*</dependencySourceInclude> 
    72                     </dependencySourceIncludes> 
    73                 </configuration> 
    74             </plugin> 
    75         </plugins> 
    76     </reporting> 
     73                                        <dependencySourceIncludes> 
     74                                                <dependencySourceInclude>de.ugoe.cs.*:*</dependencySourceInclude> 
     75                                        </dependencySourceIncludes> 
     76                                </configuration> 
     77                        </plugin> 
     78                </plugins> 
     79        </reporting> 
    7780</project> 
Note: See TracChangeset for help on using the changeset viewer.