12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <!-- Copyright 2016-2021 Steinar Bang -->
- <!-- -->
- <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
- <!-- you may not use this file except in compliance with the License. -->
- <!-- You may obtain a copy of the License at -->
- <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
- <!-- Unless required by applicable law or agreed to in writing, -->
- <!-- software distributed under the License is distributed on an "AS IS" BASIS, -->
- <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
- <!-- See the License for the specific language governing permissions and limitations -->
- <!-- under the License. -->
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>ukelonn</artifactId>
- <groupId>no.priv.bang.ukelonn</groupId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <artifactId>ukelonn.testutils</artifactId>
- <name>Ukelonn webapp common test code</name>
- <properties>
- <sonar.exclusions>**/*</sonar.exclusions>
- </properties>
- <dependencies>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.services</artifactId>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.db.liquibase.test</artifactId>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.backend</artifactId>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.authservice</groupId>
- <artifactId>authservice.web.security.dbrealm</artifactId>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.authservice</groupId>
- <artifactId>authservice.web.security.memorysession</artifactId>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.web.security</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.ops4j.pax.jdbc</groupId>
- <artifactId>pax-jdbc-derby</artifactId>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.osgiservice</groupId>
- <artifactId>osgiservice.users</artifactId>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.osgi.service.adapters</groupId>
- <artifactId>service-mocks</artifactId>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|