My favorites | Sign in
Project Home 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?xml version="1.0"?>
<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.vineetmanohar</groupId>
<artifactId>maven-twitter-plugin</artifactId>
<version>0.1</version>
<packaging>maven-plugin</packaging>
<name>Maven Twitter Plugin</name>
<description>Maven Twitter Plugin allows you to send status
updates to Twitter. Increases communication between Project owners and
Project users by automatically tweeting Maven build and release status
via Twitter.</description>
<url>http://code.google.com/p/maven-twitter-plugin/</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>Google Code Built-in Issue Tracker</system>
<url>http://code.google.com/p/maven-twitter-plugin/issues/list</url>
</issueManagement>
<scm>
<connection>scm:svn:https://maven-twitter-plugin.googlecode.com/svn/tags/maven-twitter-plugin-0.1</connection>
<developerConnection>scm:svn:https://maven-twitter-plugin.googlecode.com/svn/tags/maven-twitter-plugin-0.1</developerConnection>
<url>http://code.google.com/p/maven-twitter-plugin/source/browse/#svn/tags/maven-twitter-plugin-0.1</url>
</scm>
<distributionManagement>
<repository>
<id>vineetmanohar-release-repo</id>
<name>vineetmanohar.com Release Repo</name>
<url>scp://repo.vineetmanohar.com/home/repo/html/releases/</url>
</repository>
<snapshotRepository>
<id>vineetmanohar-snapshot-repo</id>
<name>vineetmanohar.com Snapshot Repo</name>
<url>scp://repo.vineetmanohar.com/home/repo/html/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<!-- unit tests -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.0</version>
</dependency>

<!-- underlying twitter library -->
<dependency>
<groupId>net.homeip.yusuke</groupId>
<artifactId>twitter4j</artifactId>
<version>2.0.9</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
<configuration>
<tagBase>https://maven-twitter-plugin.googlecode.com/svn/tags</tagBase>
<!-- <remoteTagging>false</remoteTagging>-->
<!-- <preparationGoals>clean install</preparationGoals>-->
<!-- <autoVersionSubmodules>true</autoVersionSubmodules>-->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-docck-plugin</artifactId>
<version>1.0-beta-2</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.4</version>
<configuration>
<downloadSources>true</downloadSources>
<wtpversion>1.5</wtpversion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>descriptor</goal>
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
<version>1.8</version>
</extension>
</extensions>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>2.4.1</version>
</plugin>
</plugins>
</reporting>
<inceptionYear>2009</inceptionYear>
<developers>
<developer>
<email>vineet.manohar@gmail.com</email>
<id>vineet.manohar</id>
<name>Vineet Manohar</name>
<url>http://www.vineetmanohar.com</url>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
</project>

Change log

r25 by vineet.manohar on Nov 15, 2009   Diff
Preparing for 0.1 release
Go to: 
Project members, sign in to write a code review

Older revisions

r24 by vineet.manohar on Nov 15, 2009   Diff
pom experimients
r23 by vineet.manohar on Nov 15, 2009   Diff
pom experimients
r22 by vineet.manohar on Nov 15, 2009   Diff
commented out special maven release
plugin section
All revisions of this file

File info

Size: 4503 bytes, 141 lines
Powered by Google Project Hosting