Switch to unified view

a/pom.xml b/pom.xml
...
...
16
    License or out of the use or inability to use the Work.
16
    License or out of the use or inability to use the Work.
17
    See the License for the specific language governing permissions and limitation under the License.
17
    See the License for the specific language governing permissions and limitation under the License.
18
18
19
-->
19
-->
20
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22
    <modelVersion>4.0.0</modelVersion>
22
    <modelVersion>4.0.0</modelVersion>
23
    <groupId>net.timbusproject.dpes.pi</groupId>
23
    <groupId>net.timbusproject.dpes.pi</groupId>
24
    <artifactId>webclient</artifactId>
24
    <artifactId>webclient</artifactId>
25
    <packaging>war</packaging>
25
    <packaging>war</packaging>
26
    <version>1.0-SNAPSHOT</version>
26
    <version>1.0-SNAPSHOT</version>
27
    <name>webclient</name>
27
    <name>webclient</name>
28
    <description>This web app provides access to the preservation identifier (http://kronos.ifs.tuwien.ac.at:8080/pi/preservationIdentifier).</description>
28
    <description>This web app provides access to the preservation identifier
29
        (http://kronos.ifs.tuwien.ac.at:8080/pi/preservationIdentifier).
30
    </description>
29
    <url>http://timbusproject.net/</url>
31
    <url>http://timbusproject.net/</url>
30
32
31
    <inceptionYear>2014</inceptionYear>
33
    <inceptionYear>2014</inceptionYear>
32
    <organization>
34
    <organization>
33
        <name>SBA Research</name>
35
        <name>SBA Research</name>
...
...
214
                </executions>
216
                </executions>
215
            </plugin>
217
            </plugin>
216
        </plugins>
218
        </plugins>
217
    </build>
219
    </build>
218
220
221
    <profiles>
222
        <profile>
223
            <id>env-timbus</id>
224
            <!-- Activated when -Denv=timbus is given as parameter. -->
225
            <activation>
226
                <property>
227
                    <name>env</name>
228
                    <value>timbus</value>
229
                </property>
230
            </activation>
231
            <properties>
232
                <tomcat.url>http://testbed.timbusproject.net:7080/manager/text</tomcat.url>
233
                <tomcat.server>testbed.timbusproject.net</tomcat.server>
234
            </properties>
235
        </profile>
236
    </profiles>
237
219
    <repositories>
238
    <repositories>
220
        <repository>
239
        <repository>
221
            <id>olymp.ifs.tuwien.ac.at</id>
240
            <id>olymp.ifs.tuwien.ac.at</id>
222
            <url>http://olymp.ifs.tuwien.ac.at:8080/archiva/repository/snapshots/</url>
241
            <url>http://olymp.ifs.tuwien.ac.at:8080/archiva/repository/snapshots/</url>
223
        </repository>
242
        </repository>