|
1 | 1 | <?xml version="1.0"?> |
2 | 2 |
|
3 | | -<!-- |
4 | | - Copyright 2016 DLR - German Aerospace Center |
5 | | - |
6 | | - Licensed under the Apache License, Version 2.0 (the "License"); |
7 | | - you may not use this file except in compliance with the License. |
8 | | - You may obtain a copy of the License at |
9 | | - |
10 | | - http://www.apache.org/licenses/LICENSE-2.0 |
11 | | - |
12 | | - Unless required by applicable law or agreed to in writing, software |
13 | | - distributed under the License is distributed on an "AS IS" BASIS, |
14 | | - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15 | | - See the License for the specific language governing permissions and |
16 | | - limitations under the License. |
17 | | - --> |
| 3 | +<!-- Copyright 2016 DLR - German Aerospace Center Licensed under the Apache |
| 4 | + License, Version 2.0 (the "License"); you may not use this file except in |
| 5 | + compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 |
| 6 | + Unless required by applicable law or agreed to in writing, software distributed |
| 7 | + under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES |
| 8 | + OR CONDITIONS OF ANY KIND, either express or implied. See the License for |
| 9 | + the specific language governing permissions and limitations under the License. --> |
18 | 10 |
|
19 | 11 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
20 | 12 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 13 | + <modelVersion>4.0.0</modelVersion> |
| 14 | + |
21 | 15 | <parent> |
22 | | - <groupId>de.dlr.knowledgefinderII</groupId> |
| 16 | + <groupId>de.dlr.knowledgefinder</groupId> |
23 | 17 | <artifactId>webapp</artifactId> |
24 | | - <version>1.0.0-SNAPSHOT</version> |
| 18 | + <version>2.0.0</version> |
25 | 19 | <relativePath>../pom.xml</relativePath> |
26 | 20 | </parent> |
27 | | - <modelVersion>4.0.0</modelVersion> |
28 | | - <groupId>de.dlr.knowledgefinderII.webapp</groupId> |
| 21 | + |
| 22 | + <groupId>de.dlr.knowledgefinder.webapp</groupId> |
29 | 23 | <artifactId>portlet</artifactId> |
30 | 24 | <packaging>war</packaging> |
31 | | - <name>KnowledgeFinderII Portlet</name> |
| 25 | + <name>KnowledgeFinder Portlet</name> |
32 | 26 |
|
33 | 27 | <build> |
34 | | - <finalName>KnowledgeFinderPortlet</finalName> |
| 28 | + <finalName>KnowledgeFinder-portlet</finalName> |
35 | 29 | <plugins> |
36 | 30 | <plugin> |
37 | 31 | <artifactId>maven-war-plugin</artifactId> |
38 | 32 | <configuration> |
39 | | - <finalName>KnowledgeFinderPortlet</finalName> |
40 | | - </configuration> |
| 33 | + <finalName>KnowledgeFinder-portlet</finalName> |
| 34 | + </configuration> |
41 | 35 | </plugin> |
42 | 36 | <plugin> |
43 | 37 | <groupId>com.liferay.maven.plugins</groupId> |
|
51 | 45 | </plugin> |
52 | 46 | </plugins> |
53 | 47 | </build> |
| 48 | + |
54 | 49 | <dependencies> |
55 | 50 |
|
| 51 | + <!-- liferay --> |
| 52 | + <dependency> |
| 53 | + <groupId>com.liferay.portal</groupId> |
| 54 | + <artifactId>portal-service</artifactId> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>com.liferay.portal</groupId> |
| 58 | + <artifactId>util-bridges</artifactId> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>com.liferay.portal</groupId> |
| 62 | + <artifactId>util-taglib</artifactId> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>com.liferay.portal</groupId> |
| 66 | + <artifactId>util-java</artifactId> |
| 67 | + </dependency> |
| 68 | + |
56 | 69 | <!-- Spring --> |
57 | 70 | <dependency> |
58 | 71 | <groupId>org.springframework</groupId> |
|
76 | 89 | <groupId>org.codehaus.jackson</groupId> |
77 | 90 | <artifactId>jackson-core-asl</artifactId> |
78 | 91 | </dependency> |
79 | | - |
| 92 | + |
80 | 93 | <!-- CDI inject with liferay --> |
81 | 94 | <!-- Required only for Tomcat --> |
82 | 95 | <dependency> |
|
90 | 103 | <artifactId>slf4j-api</artifactId> |
91 | 104 | </dependency> |
92 | 105 | <dependency> |
| 106 | + <groupId>com.liferay.portal</groupId> |
| 107 | + <artifactId>util-slf4j</artifactId> |
| 108 | + </dependency> |
| 109 | + <!--dependency> |
93 | 110 | <groupId>org.slf4j</groupId> |
94 | 111 | <artifactId>jcl-over-slf4j</artifactId> |
95 | 112 | </dependency> |
96 | | - <dependency> |
97 | | - <groupId>org.slf4j</groupId> |
98 | | - <artifactId>slf4j-log4j12</artifactId> |
99 | | - </dependency> |
100 | 113 | <dependency> |
101 | 114 | <groupId>log4j</groupId> |
102 | 115 | <artifactId>log4j</artifactId> |
103 | 116 | </dependency> |
| 117 | + <dependency> |
| 118 | + <groupId>org.slf4j</groupId> |
| 119 | + <artifactId>slf4j-log4j12</artifactId> |
| 120 | + </dependency--> |
104 | 121 |
|
105 | 122 | <!-- @Inject --> |
106 | 123 | <dependency> |
107 | 124 | <groupId>javax.inject</groupId> |
108 | 125 | <artifactId>javax.inject</artifactId> |
109 | 126 | </dependency> |
110 | 127 |
|
111 | | - <!-- jstl --> |
| 128 | + <dependency> |
| 129 | + <groupId>javax.portlet</groupId> |
| 130 | + <artifactId>portlet-api</artifactId> |
| 131 | + </dependency> |
| 132 | + <dependency> |
| 133 | + <groupId>javax.servlet</groupId> |
| 134 | + <artifactId>servlet-api</artifactId> |
| 135 | + </dependency> |
| 136 | + <dependency> |
| 137 | + <groupId>javax.servlet.jsp</groupId> |
| 138 | + <artifactId>jsp-api</artifactId> |
| 139 | + </dependency> |
112 | 140 | <dependency> |
113 | 141 | <groupId>javax.servlet</groupId> |
114 | 142 | <artifactId>jstl</artifactId> |
|
0 commit comments