-
Notifications
You must be signed in to change notification settings - Fork 7
/
pom.xml
106 lines (106 loc) · 3.43 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.bekk.boss</groupId>
<artifactId>maven-jetty-pluto-embedded</artifactId>
<packaging>jar</packaging>
<version>1.0.2-SNAPSHOT</version>
<name>maven-jetty-pluto-embedded</name>
<description> Artifact allowing pluto to be embedded in Jetty in a maven project. This
makes it possible to use the maven-jetty-plugin and create a launcher in Eclipse for
running your portlets. </description>
<url>http://boss.bekk.no</url>
<scm>
<connection>scm:svn:http://boss.bekk.no/repos/projects/maven-jetty-pluto-embedded/</connection>
<developerConnection>scm:svn:https://boss.bekk.no/repos/projects/maven-jetty-pluto-embedded/</developerConnection>
<url>http://boss.bekk.no/repos/projects/maven-jetty-pluto-embedded/</url>
</scm>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>nilsga</id>
<name>Nils-Helge Garli</name>
<email>[email protected]</email>
<url>http://portletwork.blogspot.com</url>
</developer>
</developers>
<build>
<!--<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
</extension>
</extensions>
-->
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jsp-2.1</artifactId>
<version>6.1.14</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.14</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.pluto</groupId>
<artifactId>pluto-portal-driver</artifactId>
<version>1.1.6</version>
</dependency>
<dependency>
<groupId>org.apache.pluto</groupId>
<artifactId>pluto-portal-driver-impl</artifactId>
<version>1.1.6</version>
</dependency>
<dependency>
<groupId>org.apache.pluto</groupId>
<artifactId>pluto-container</artifactId>
<version>1.1.6</version>
</dependency>
<dependency>
<groupId>org.apache.pluto</groupId>
<artifactId>pluto-taglib</artifactId>
<version>1.1.6</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>2.0.2</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<site>
<id>boss.ssh.site</id>
<url>file:/srv/www/htdocs/maven-jetty-pluto-embedded</url>
</site>
<repository>
<id>boss.ssh.repo</id>
<url>file:/usr/local/jboss-4.0.4.GA/proximity/inhouse/storage</url>
</repository>
<snapshotRepository>
<id>boss.ssh.snapshots</id>
<url>file:/usr/local/jboss-4.0.4.GA/proximity/inhouse.snapshot/storage</url>
</snapshotRepository>
</distributionManagement>
</project>