Tiles eingeführt
[website] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
4   <modelVersion>4.0.0</modelVersion>
5
6
7   <groupId>de.juplo</groupId>
8   <artifactId>branding</artifactId>
9   <name>Juplo - branding</name>
10   <version>1.0-SNAPSHOT</version>
11   <packaging>war</packaging>
12   <url>http://www.juplo.de/branding</url>
13
14
15   <prerequisites>
16     <maven>2.0.6</maven>
17   </prerequisites>
18
19
20   <scm>
21     <connection>scm:git:http://juplo.de/git/branding</connection>
22     <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/branding</developerConnection>
23     <url>http://juplo.de/gitweb/?p=branding;a=summary</url>
24   </scm>
25
26
27   <developers>
28     <developer>
29       <id>kai</id>
30       <name>Kai Moritz</name>
31       <email>kai@juplo.de</email>
32     </developer>
33   </developers>
34
35
36   <properties>
37
38     <!-- Zeichensatz -->
39     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40
41     <!-- Verwendete Versionen -->
42     <slf4j.version>1.5.8</slf4j.version>
43     <tiles.version>3.0.1</tiles.version>
44
45   </properties>
46
47
48   <dependencies>
49
50     <!-- Tiles -->
51     <dependency>
52       <groupId>org.apache.tiles</groupId>
53       <artifactId>tiles-core</artifactId>
54       <version>${tiles.version}</version>
55       <scope>runtime</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.apache.tiles</groupId>
59       <artifactId>tiles-jsp</artifactId>
60       <version>${tiles.version}</version>
61       <scope>runtime</scope>
62     </dependency>
63
64     <!-- Logging -->
65     <dependency>
66       <groupId>org.slf4j</groupId>
67       <artifactId>slf4j-log4j12</artifactId>
68       <version>${slf4j.version}</version>
69       <scope>runtime</scope>
70     </dependency>
71
72   </dependencies>
73
74
75   <distributionManagement>
76     <repository>
77       <id>juplo.internal</id>
78       <name>Internal Release Repository</name>
79       <url>http://juplo.de/archiva/repository/internal/</url>
80     </repository>
81     <snapshotRepository>
82       <id>juplo.snapshots</id>
83       <name>Internal Snapshot Repository</name>
84       <url>http://juplo.de/archiva/repository/snapshots/</url>
85     </snapshotRepository>
86   </distributionManagement>
87
88
89   <build>
90     <finalName>branding</finalName>
91     <plugins>
92       <plugin>
93         <groupId>org.lesscss</groupId>
94         <artifactId>lesscss-maven-plugin</artifactId>
95         <version>1.3.3</version>
96         <executions>
97           <execution>
98             <goals>
99               <goal>compile</goal>
100             </goals>
101           </execution>
102         </executions>
103       </plugin>
104       <plugin>
105         <groupId>org.apache.maven.plugins</groupId>
106         <artifactId>maven-source-plugin</artifactId>
107         <executions>
108           <execution>
109             <id>attach-sources</id>
110             <phase>verify</phase>
111             <goals>
112               <goal>jar</goal>
113             </goals>
114           </execution>
115         </executions>
116       </plugin>
117       <plugin>
118         <groupId>org.eclipse.jetty</groupId>
119         <artifactId>jetty-maven-plugin</artifactId>
120       </plugin>
121       <plugin>
122         <groupId>org.codehaus.mojo</groupId>
123         <artifactId>tomcat-maven-plugin</artifactId>
124         <version>1.1</version>
125         <configuration>
126           <path>/</path>
127           <uriEncoding>UTF-8</uriEncoding>
128         </configuration>
129       </plugin>
130     </plugins>
131   </build>
132
133
134   <reporting>
135     <plugins>
136       <plugin>
137         <artifactId>maven-changes-plugin</artifactId>
138       </plugin>
139       <plugin>
140         <artifactId>maven-javadoc-plugin</artifactId>
141       </plugin>
142       <plugin>
143         <artifactId>maven-jxr-plugin</artifactId>
144       </plugin>
145       <plugin>
146         <artifactId>maven-surefire-report-plugin</artifactId>
147       </plugin>
148       <plugin>
149         <artifactId>maven-scm-plugin</artifactId>
150         <configuration>
151           <goals>install</goals>
152         </configuration>
153       </plugin>
154     </plugins>
155   </reporting>
156
157 </project>