diff options
Diffstat (limited to 'id/oa/pom.xml')
| -rw-r--r-- | id/oa/pom.xml | 25 | 
1 files changed, 23 insertions, 2 deletions
| diff --git a/id/oa/pom.xml b/id/oa/pom.xml index 621c428bd..4b9a053ad 100644 --- a/id/oa/pom.xml +++ b/id/oa/pom.xml @@ -24,10 +24,25 @@  				<name>Internet2</name>  				<url>https://build.shibboleth.net/nexus/content/groups/public/</url>  			</repository> +            <repository> +                <id>IAIK Local</id> +                <name>iaik/libs</name> +                <url>http://nexus.iaik.tugraz.at/nexus/content/repositories/iaik/</url> +            </repository>  		</repositories>      <build>          <finalName>oa</finalName> +        <plugins> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-compiler-plugin</artifactId> +                <configuration> +                    <source>1.5</source> +                    <target>1.5</target> +                </configuration> +            </plugin> +        </plugins>      </build>      <dependencies> @@ -53,8 +68,13 @@  				<artifactId>xmltooling</artifactId>  				<version>1.4.0</version>  			</dependency> - -			<dependency> +        <dependency> +            <groupId>javax.servlet</groupId> +            <artifactId>servlet-api</artifactId> +            <scope>provided</scope> +            <version>2.4</version> +        </dependency> +        <dependency>  				<groupId>jstl</groupId>  			  <artifactId>jstl</artifactId>  			  <version>1.2</version> @@ -84,4 +104,5 @@  			</dependency>      </dependencies> +  </project> | 
