Changeset 1909


Ignore:
Timestamp:
04/25/12 15:35:43 (12 years ago)
Author:
oschonef
Message:
  • reorganize pom
  • rename groupId to 'eu.clarin' (it's more generic than CMDI ;)
  • rename artifactId to 'oai-provider' (more Maven-like)
Location:
OAIProvider/trunk
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • OAIProvider/trunk/pom.xml

    r1908 r1909  
    11<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>
     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>eu.clarin</groupId>
     5        <artifactId>oai-provider</artifactId>
     6        <name>OAI-PMH Provider</name>
     7        <description>A OAI-PMH provider implementation supporting version 2.0.</description>
     8        <version>0.1.1-SNAPSHOT</version>
     9        <packaging>jar</packaging>
    410
    5   <groupId>eu.clarin.cmdi</groupId>
    6   <artifactId>OAIProvider</artifactId>
    7   <packaging>jar</packaging>
    8   <name>OAIProvider</name>
    9   <version>0.1.1-SNAPSHOT</version>
     11        <organization>
     12                <name>Institut fÃŒr Deutsche Sprache</name>
     13                <url>http://www.ids-mannheim.de/</url>
     14        </organization>
    1015
    11   <organization>
    12     <name>Institut fÃŒr Deutsche Sprache</name>
    13     <url>http://www.ids-mannheim.de/</url>
    14   </organization>
     16        <properties>
     17                <!-- plug-in settings -->
     18                <maven.compiler.source>1.6</maven.compiler.source>
     19                <maven.compiler.target>1.6</maven.compiler.target>
     20                <!-- dependency versions -->
     21                <slf4j.version>1.6.4</slf4j.version>
     22        </properties>
    1523
    16   <build>
    17     <plugins>
    18       <plugin>
    19         <groupId>org.apache.maven.plugins</groupId>
    20         <artifactId>maven-compiler-plugin</artifactId>
    21         <version>2.1</version>
    22         <configuration>
    23           <source>${maven.compiler.source}</source>
    24           <target>${maven.compiler.target}</target>
    25         </configuration>
    26       </plugin>
    27     </plugins>
    28   </build>
     24        <dependencies>
     25                <dependency>
     26                        <groupId>javax.servlet</groupId>
     27                        <artifactId>servlet-api</artifactId>
     28                        <version>2.5</version>
     29                        <type>jar</type>
     30                        <scope>provided</scope>
     31                </dependency>
    2932
    30   <dependencies>
    31     <dependency>
    32       <groupId>javax.servlet</groupId>
    33       <artifactId>servlet-api</artifactId>
    34       <version>2.5</version>
    35       <type>jar</type>
    36       <scope>provided</scope>
    37     </dependency>
     33                <dependency>
     34                        <groupId>commons-lang</groupId>
     35                        <artifactId>commons-lang</artifactId>
     36                        <version>2.5</version>
     37                        <type>jar</type>
     38                </dependency>
    3839
    39     <dependency>
    40       <groupId>commons-lang</groupId>
    41       <artifactId>commons-lang</artifactId>
    42       <version>2.5</version>
    43       <type>jar</type>
    44     </dependency>
     40                <dependency>
     41                        <groupId>org.slf4j</groupId>
     42                        <artifactId>slf4j-api</artifactId>
     43                        <version>${slf4j.version}</version>
     44                </dependency>
     45        </dependencies>
    4546
    46 
    47     <dependency>
    48       <groupId>org.slf4j</groupId>
    49       <artifactId>slf4j-api</artifactId>
    50       <version>${slf4j.version}</version>
    51     </dependency>
    52 
    53     <dependency>
    54       <groupId>junit</groupId>
    55       <artifactId>junit</artifactId>
    56       <version>3.8.1</version>
    57       <scope>test</scope>
    58     </dependency>
    59   </dependencies>
    60 
    61   <properties>
    62     <!-- plug-in settings -->
    63     <maven.compiler.source>1.6</maven.compiler.source>
    64     <maven.compiler.target>1.6</maven.compiler.target>
    65     <!-- dependency versions -->
    66     <slf4j.version>1.6.4</slf4j.version>
    67   </properties>
    68 
     47        <build>
     48                <plugins>
     49                        <plugin>
     50                                <groupId>org.apache.maven.plugins</groupId>
     51                                <artifactId>maven-compiler-plugin</artifactId>
     52                                <version>2.1</version>
     53                                <configuration>
     54                                        <source>${maven.compiler.source}</source>
     55                                        <target>${maven.compiler.target}</target>
     56                                </configuration>
     57                        </plugin>
     58                </plugins>
     59        </build>
    6960</project>
Note: See TracChangeset for help on using the changeset viewer.