Changeset 2210


Ignore:
Timestamp:
09/11/12 13:42:53 (12 years ago)
Author:
oschonef
Message:
  • cleanup whitespace
File:
1 edited

Legend:

Unmodified
Added
Removed
  • SRUServer/trunk/pom.xml

    r2208 r2210  
    11<?xml version="1.0" encoding="UTF-8"?>
    2 <project 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         <modelVersion>4.0.0</modelVersion>
    6         <groupId>eu.clarin.sru</groupId>
    7         <artifactId>sru-server</artifactId>
    8         <version>0.6.0-SNAPSHOT</version>
    9         <packaging>jar</packaging>
    10         <name>SRU/CQL Server</name>
    11         <description>A SRU/CQL server implementation conforming to SRU/CQL protocol version 1.1 and 1.2</description>
     2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     3    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     4    <modelVersion>4.0.0</modelVersion>
     5    <groupId>eu.clarin.sru</groupId>
     6    <artifactId>sru-server</artifactId>
     7    <version>0.6.0-SNAPSHOT</version>
     8    <packaging>jar</packaging>
     9    <name>SRU/CQL Server</name>
     10    <description>A SRU/CQL server implementation conforming to SRU/CQL protocol version 1.1 and 1.2</description>
    1211
    13         <properties>
    14                 <!-- project settings -->
    15                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16                 <!-- plug-in settings -->
    17                 <maven.compiler.source>1.6</maven.compiler.source>
    18                 <maven.compiler.target>1.6</maven.compiler.target>
    19                 <!-- dependency versions -->
    20                 <slf4j.version>1.6.4</slf4j.version>
    21         </properties>
     12    <properties>
     13        <!-- project settings -->
     14        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     15        <!-- plug-in settings -->
     16        <maven.compiler.source>1.6</maven.compiler.source>
     17        <maven.compiler.target>1.6</maven.compiler.target>
     18        <!-- dependency versions -->
     19        <slf4j.version>1.6.4</slf4j.version>
     20    </properties>
    2221
    23         <dependencies>
    24                 <dependency>
    25                         <groupId>org.slf4j</groupId>
    26                         <artifactId>slf4j-api</artifactId>
    27                         <version>${slf4j.version}</version>
    28                 </dependency>
     22    <dependencies>
     23        <dependency>
     24            <groupId>org.slf4j</groupId>
     25            <artifactId>slf4j-api</artifactId>
     26            <version>${slf4j.version}</version>
     27        </dependency>
    2928
    30         <!--
    31           Did you read the "README.txt" file and manually installed the artifact
    32           in your Maven repository? 
    33         -->
    34                 <dependency>
    35                         <groupId>org.z3950.zing</groupId>
    36                         <artifactId>cql-java</artifactId>
    37                         <version>1.7</version>
    38                 </dependency>
     29        <!-- Did you read the "README.txt" file and manually installed the
     30            artifact in your Maven repository? -->
     31        <dependency>
     32            <groupId>org.z3950.zing</groupId>
     33            <artifactId>cql-java</artifactId>
     34            <version>1.7</version>
     35        </dependency>
    3936
    40                 <dependency>
    41                         <groupId>javax.servlet</groupId>
    42                         <artifactId>servlet-api</artifactId>
    43                         <version>2.5</version>
    44                         <type>jar</type>
    45                         <scope>provided</scope>
    46                 </dependency>
    47         </dependencies>
     37        <dependency>
     38            <groupId>javax.servlet</groupId>
     39            <artifactId>servlet-api</artifactId>
     40            <version>2.5</version>
     41            <type>jar</type>
     42            <scope>provided</scope>
     43        </dependency>
     44    </dependencies>
    4845
    49         <build>
    50                 <plugins>
    51                         <plugin>
    52                                 <groupId>org.apache.maven.plugins</groupId>
    53                                 <artifactId>maven-compiler-plugin</artifactId>
    54                                 <version>2.1</version>
    55                                 <configuration>
    56                                         <source>${maven.compiler.source}</source>
    57                                         <target>${maven.compiler.target}</target>
    58                                 </configuration>
    59                         </plugin>
     46    <build>
     47        <plugins>
     48            <plugin>
     49                <groupId>org.apache.maven.plugins</groupId>
     50                <artifactId>maven-compiler-plugin</artifactId>
     51                <version>2.1</version>
     52                <configuration>
     53                    <source>${maven.compiler.source}</source>
     54                    <target>${maven.compiler.target}</target>
     55                </configuration>
     56            </plugin>
    6057
    6158            <plugin>
     
    8683                </executions>
    8784            </plugin>
    88                 </plugins>
    89         </build>
     85        </plugins>
     86    </build>
    9087</project>
Note: See TracChangeset for help on using the changeset viewer.