My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
107
108
109
<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>vineetmanohar</groupId>
<artifactId>vineetmanohar</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>vineetmanohar</name>
<url>http://www.vineetmanohar.com</url>
<pluginRepositories>
<pluginRepository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</pluginRepository>
<pluginRepository>
<id>vineetmanohar-release-repo</id>
<name>Vineet Manohar Release Repo</name>
<url>http://repo.vineetmanohar.com/releases</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.0</version>
<scope>test</scope>
</dependency>

<!-- log4j -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
</dependency>

<!-- bean utils, for bean introspection -->
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.8.3</version>
</dependency>

<!-- servlets -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>

<plugin>
<groupId>com.vineetmanohar</groupId>
<artifactId>maven-twitter-plugin</artifactId>
<version>0.1</version>

<executions>
<execution>
<id>test-passed</id>
<configuration>
<twitterStatus>#Maven tests passed (Sent via #mvn)</twitterStatus>
</configuration>
<phase>test</phase>
<goals>
<goal>tweet</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<!-- jaxb plugin -->
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<args>
<param>-npa</param>
</args>
<generatePackage>com.vineetmanohar.sitemap.jaxb</generatePackage>
<npa>true</npa>
<includeSchemas>
<include>sitemap.xsd</include>
</includeSchemas>
<removeOldOutput>true</removeOldOutput>
<verbose>true</verbose>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

Change log

r17 by vineet.manohar on Oct 23, 2010   Diff
converted to a war project
Go to: 
Project members, sign in to write a code review

Older revisions

r10 by vineet.manohar on Nov 8, 2009   Diff
added 1.6 as source and target
language
r9 by vineet.manohar on Sep 16, 2009   Diff
updated plugin info to include plugin
repo url
r4 by vineet.manohar on Sep 1, 2009   Diff
added snippets for jaxb dependency and
plugin
All revisions of this file

File info

Size: 2990 bytes, 109 lines
Powered by Google Project Hosting