Mercurial > hg > digilib
annotate servlet/pom.xml @ 1689:93b59a801711
starting digilib 2.6.
| author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
|---|---|
| date | Mon, 26 Mar 2018 19:49:46 +0200 |
| parents | c1e50875a6a3 |
| children |
| rev | line source |
|---|---|
|
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
4 <modelVersion>4.0.0</modelVersion> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
5 <parent> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
6 <groupId>digilib</groupId> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
7 <artifactId>digilib</artifactId> |
|
1689
93b59a801711
starting digilib 2.6.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
1671
diff
changeset
|
8 <version>2.6-SNAPSHOT</version> |
|
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
9 </parent> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
10 <artifactId>digilib-servlet</artifactId> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
11 <name>digilib-servlet</name> |
|
1654
22dd14eccdc0
Change digilib project links to GitHub.
Robert Casties <r0bcas7@gmail.com>
parents:
1591
diff
changeset
|
12 <url>https://github.com/robcast/digilib</url> |
|
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
13 <properties> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
15 </properties> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
16 <description>The Digital Image Library - common Servlet code</description> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
17 <dependencies> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
18 <dependency> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
19 <groupId>digilib</groupId> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
20 <artifactId>digilib-common</artifactId> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
21 </dependency> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
22 <dependency> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
23 <groupId>javax.servlet</groupId> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
24 <artifactId>servlet-api</artifactId> |
| 1422 | 25 <version>2.4</version> |
|
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
26 <type>jar</type> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
27 <scope>provided</scope> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
28 </dependency> |
|
1499
31566778c251
new OpenID Connect authentication OpenIdAuthnOps works now!
robcast
parents:
1492
diff
changeset
|
29 <dependency> |
|
1667
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
30 <!-- implementation of JWT JOSE specification --> |
|
1499
31566778c251
new OpenID Connect authentication OpenIdAuthnOps works now!
robcast
parents:
1492
diff
changeset
|
31 <groupId>org.bitbucket.b_c</groupId> |
|
31566778c251
new OpenID Connect authentication OpenIdAuthnOps works now!
robcast
parents:
1492
diff
changeset
|
32 <artifactId>jose4j</artifactId> |
|
31566778c251
new OpenID Connect authentication OpenIdAuthnOps works now!
robcast
parents:
1492
diff
changeset
|
33 <version>0.5.0</version> |
|
31566778c251
new OpenID Connect authentication OpenIdAuthnOps works now!
robcast
parents:
1492
diff
changeset
|
34 </dependency> |
|
1667
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
35 <dependency> |
|
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
36 <groupId>javax.json</groupId> |
|
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
37 <artifactId>javax.json-api</artifactId> |
|
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
38 <version>1.0</version> |
|
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
39 </dependency> |
|
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
40 <dependency> |
|
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
41 <groupId>org.glassfish</groupId> |
|
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
42 <artifactId>javax.json</artifactId> |
|
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
43 <version>1.0.4</version> |
|
254167aef851
Changed IIIF info.json generation to JsonGenerator.
Robert Casties <r0bcas7@gmail.com>
parents:
1654
diff
changeset
|
44 </dependency> |
|
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
45 </dependencies> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
diff
changeset
|
46 </project> |
