Changeset 192


Ignore:
Timestamp:
02/16/10 21:56:21 (14 years ago)
Author:
oschonef
Message:
  • reformatting
  • add Maven Central repository
File:
1 edited

Legend:

Unmodified
Added
Removed
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/pom.xml

    r191 r192  
    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/maven-v4_0_0.xsd">
     1<project xmlns="http://maven.apache.org/POM/4.0.0"
     2    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     3    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    34  <modelVersion>4.0.0</modelVersion>
    45  <groupId>eu.clarin.cmdi</groupId>
     
    78  <name>CLARIN Virtual Collection Registry</name>
    89  <version>0.0.1-SNAPSHOT</version>
     10
    911  <build>
    1012    <plugins>
     
    1416        <version>2.1</version>
    1517        <configuration>
    16           <source>1.5</source>
    17           <target>1.5</target>
     18          <source>${maven.compiler.source}</source>
     19          <target>${maven.compiler.target}</target>
    1820        </configuration>
    1921      </plugin>
    2022      <plugin>
    21         <groupId>org.antlr</groupId>
    22         <artifactId>antlr3-maven-plugin</artifactId>
    23         <version>3.2</version>
    24         <executions>
    25                 <execution>
    26                         <goals>
    27                                 <goal>antlr</goal>
    28                         </goals>
    29                 </execution>
    30         </executions>
     23        <groupId>org.antlr</groupId>
     24        <artifactId>antlr3-maven-plugin</artifactId>
     25        <version>3.2</version>
     26        <executions>
     27          <execution>
     28            <goals>
     29              <goal>antlr</goal>
     30            </goals>
     31          </execution>
     32        </executions>
    3133      </plugin>
    3234    </plugins>
    3335  </build>
    34   <profiles>
    35   </profiles>
     36
    3637  <repositories>
    3738    <repository>
    38       <id>maven2-repository.dev.java.net</id>
    39       <name>Java.net Maven 2 Repository</name>
     39      <id>repository.maven-central</id>
     40      <name>Maven Central Repository</name>
     41      <url>http://repo1.maven.org/maven2/</url>
     42    </repository>
     43    <repository>
     44      <id>repository.java-net</id>
     45      <name>Java.net Repository</name>
    4046      <url>http://download.java.net/maven/2</url>
    4147    </repository>
    4248    <repository>
    43       <id>maven2-repository.jboss</id>
    44       <name>JBoss Maven 2 Repository</name>
     49      <id>repository.jboss</id>
     50      <name>JBoss Repository</name>
    4551      <url>http://repository.jboss.com/maven2/</url>
    4652    </repository>
     
    4854  <pluginRepositories>
    4955    <pluginRepository>
    50       <id>maven2-repository.dev.java.net</id>
    51       <name>Java.net Maven 2 Repository</name>
     56      <id>repository.maven-central</id>
     57      <name>Maven Central Repository</name>
     58      <url>http://repo1.maven.org/maven2/</url>
     59    </pluginRepository>
     60    <pluginRepository>
     61      <id>repository.java-net</id>
     62      <name>Java.net Repository</name>
    5263      <url>http://download.java.net/maven/2</url>
    5364    </pluginRepository>
    5465    <pluginRepository>
    55       <id>maven2-repository.jboss</id>
    56       <name>JBoss Maven 2 Repository</name>
     66      <id>repository.jboss</id>
     67      <name>JBoss Repository</name>
    5768      <url>http://repository.jboss.com/maven2/</url>
    5869    </pluginRepository>
    5970  </pluginRepositories>
     71
    6072  <dependencies>
    6173    <dependency>
     
    6779    </dependency>
    6880    <dependency>
    69         <groupId>org.hibernate.javax.persistence</groupId>
    70         <artifactId>hibernate-jpa-2.0-api</artifactId>
    71         <version>${hibernateJpaVersion}</version>
     81      <groupId>org.hibernate.javax.persistence</groupId>
     82      <artifactId>hibernate-jpa-2.0-api</artifactId>
     83      <version>${hibernate.jpaVersion}</version>
    7284    </dependency>
    7385    <dependency>
    7486      <groupId>org.hibernate</groupId>
    7587      <artifactId>hibernate-entitymanager</artifactId>
    76       <version>${hibernateVersion}</version>
     88      <version>${hibernate.version}</version>
    7789      <scope>runtime</scope>
    7890      <exclusions>
    79         <!--
    80           Jersey has dependencies with different group ids therefore
    81           maven cannot resolve the conflict and gives me both jars (two
    82           of stax and two of jaxb-impl). Excluding them manually to
    83           overcome the problem
    84         -->
    8591        <exclusion>
    8692          <groupId>org.slf4j</groupId>
     
    118124      </exclusions>
    119125    </dependency>
    120     <dependency> <!-- Needed for "automatic" json support -->
     126    <dependency>
    121127      <groupId>com.sun.jersey</groupId>
    122128      <artifactId>jersey-json</artifactId>
     
    124130      <scope>runtime</scope>
    125131      <exclusions>
    126         <!--
    127           Jersey has dependencies with different group ids therefore
    128           maven cannot resolve the conflict and gives me both jars (two
    129           of stax and two of jaxb-impl). Excluding them manually to
    130           overcome the problem
    131         -->
    132132        <exclusion>
    133133          <groupId>stax</groupId>
     
    152152    </dependency>
    153153    <dependency>
    154         <groupId>org.slf4j</groupId>
    155         <artifactId>slf4j-jdk14</artifactId>
    156         <version>1.5.10</version>
    157         <scope>runtime</scope>
     154      <groupId>org.slf4j</groupId>
     155      <artifactId>slf4j-jdk14</artifactId>
     156      <version>1.5.10</version>
     157      <scope>runtime</scope>
    158158    </dependency>
    159159    <dependency>
    160         <groupId>org.slf4j</groupId>
    161         <artifactId>slf4j-api</artifactId>
    162         <version>1.5.10</version>
    163         <scope>runtime</scope>
     160      <groupId>org.slf4j</groupId>
     161      <artifactId>slf4j-api</artifactId>
     162      <version>1.5.10</version>
     163      <scope>runtime</scope>
    164164    </dependency>
    165165    <dependency>
    166         <groupId>org.antlr</groupId>
    167         <artifactId>antlr-runtime</artifactId>
    168         <version>3.2</version>
    169         <type>jar</type>
     166      <groupId>org.antlr</groupId>
     167      <artifactId>antlr-runtime</artifactId>
     168      <version>3.2</version>
     169      <type>jar</type>
    170170    </dependency>
    171171  </dependencies>
    172   <dependencyManagement>
    173     <dependencies>
    174     </dependencies>
    175   </dependencyManagement>
     172
    176173  <properties>
    177         <hibernateVersion>3.5.0-CR-1</hibernateVersion>
    178         <hibernateJpaVersion>1.0.0-CR-1</hibernateJpaVersion>
     174    <!-- plug-in settings -->
     175    <maven.compiler.source>1.5</maven.compiler.source>
     176    <maven.compiler.target>1.5</maven.compiler.target>
     177    <!-- dependency versions -->
     178    <hibernate.version>3.5.0-CR-1</hibernate.version>
     179    <hibernate.jpaVersion>1.0.0-CR-1</hibernate.jpaVersion>
    179180  </properties>
    180181</project>
Note: See TracChangeset for help on using the changeset viewer.