How come my check in has no author?, am I the only one?
Thanks
-D
---------- Forwarded message ----------
From: <""@codehaus.org>
Date: Sat, Jun 21, 2008 at 1:42 PM
Subject: [mojo-scm] [7170] trunk/mojo/sql-maven-plugin: add scm
element, add version to usage and example, and format the pom
To: [EMAIL PROTECTED]
Revision 7170 Author Date 2008-06-21 15:42:57 -0500 (Sat, 21 Jun
2008)
Log Message
add scm element, add version to usage and example, and format the pom
Modified Paths
trunk/mojo/sql-maven-plugin/pom.xml
trunk/mojo/sql-maven-plugin/src/site/apt/examples/execute.apt
trunk/mojo/sql-maven-plugin/src/site/apt/usage.apt
Diff
Modified: trunk/mojo/sql-maven-plugin/pom.xml (7169 => 7170)
--- trunk/mojo/sql-maven-plugin/pom.xml 2008-06-20 10:49:52 UTC
(rev 7169)
+++ trunk/mojo/sql-maven-plugin/pom.xml 2008-06-21 20:42:57 UTC
(rev 7170)
@@ -1,84 +1,96 @@
<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">
+
<parent>
<artifactId>mojo</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>17</version>
</parent>
+
<modelVersion>4.0.0</modelVersion>
- <artifactId>sql-maven-plugin</artifactId>
- <packaging>maven-plugin</packaging>
- <version>1.1-SNAPSHOT</version>
- <name>SQL Plugin for Maven</name>
- <inceptionYear>2006</inceptionYear>
- <description>Execute SQL Statements</description>
+
+ <artifactId>sql-maven-plugin</artifactId>
+ <packaging>maven-plugin</packaging>
+ <version>1.1-SNAPSHOT</version>
+ <name>SQL Plugin for Maven</name>
+ <inceptionYear>2006</inceptionYear>
+ <description>Execute SQL Statements</description>
+
<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/browse/MSQL</url>
</issueManagement>
- <developers>
- <developer>
- <id>topping</id>
- <name>Brian Topping</name>
- <email>[EMAIL PROTECTED]</email>
- <roles>
- <role>Java Developer</role>
- </roles>
- <timezone>+8</timezone>
- </developer>
- <developer>
- <id>dtran</id>
- <name>Dan Tran</name>
- <email>[EMAIL PROTECTED]</email>
- <roles>
- <role>Java Developer</role>
- </roles>
- </developer>
- </developers>
+
+ <scm>
+ <connection>scm:svn:http://svn.codehaus.org/mojo/trunk/mojo/sql-maven-plugin
</connection>
+ <developerConnection>scm:svn:https://svn.codehaus.org/mojo/trunk/mojo/sql-maven-plugin
</developerConnection>
+ <url>http://svn.codehaus.org/mojo/trunk/mojo/sql-maven-plugin</
url>
+ </scm>
+
+ <developers>
+ <developer>
+ <id>topping</id>
+ <name>Brian Topping</name>
+ <email>[EMAIL PROTECTED]</email>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ <timezone>+8</timezone>
+ </developer>
+ <developer>
+ <id>dtran</id>
+ <name>Dan Tran</name>
+ <email>[EMAIL PROTECTED]</email>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ </developers>
- <licenses>
- <license>
- <name>Apache License 2</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
+ <licenses>
+ <license>
+ <name>Apache License 2</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>axion</groupId>
- <artifactId>axion</artifactId>
- <version>1.0-M2-dev</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-settings</artifactId>
- <version>2.0</version>
- </dependency>
- </dependencies>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>axion</groupId>
+ <artifactId>axion</artifactId>
+ <version>1.0-M2-dev</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-settings</artifactId>
+ <version>2.0</version>
+ </dependency>
+ </dependencies>
+
</project>
Modified: trunk/mojo/sql-maven-plugin/src/site/apt/examples/
execute.apt
(7169 => 7170)
--- trunk/mojo/sql-maven-plugin/src/site/apt/examples/execute.apt
2008-06-20
10:49:52 UTC (rev 7169)
+++ trunk/mojo/sql-maven-plugin/src/site/apt/examples/execute.apt
2008-06-21
20:42:57 UTC (rev 7170)
@@ -23,6 +23,7 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>sql-maven-plugin</artifactId>
+ <version>1.1</version>
<dependencies>
<!-- specify the dependent jdbc driver here -->
Modified: trunk/mojo/sql-maven-plugin/src/site/apt/usage.apt (7169
=> 7170)
--- trunk/mojo/sql-maven-plugin/src/site/apt/usage.apt 2008-06-20
10:49:52 UTC (rev 7169)
+++ trunk/mojo/sql-maven-plugin/src/site/apt/usage.apt 2008-06-21
20:42:57 UTC (rev 7170)
@@ -23,6 +23,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sql-maven-plugin</artifactId>
+ <version>1.1</version>
<!--jar file that has the jdbc driver -->
<dependencies>
________________________________
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email