svnno****@sourc*****
svnno****@sourc*****
2009年 9月 20日 (日) 23:51:26 JST
Revision: 3622 http://sourceforge.jp/projects/jiemamy/svn/view?view=rev&revision=3622 Author: yamkazu Date: 2009-09-20 23:51:26 +0900 (Sun, 20 Sep 2009) Log Message: ----------- dialect-mysqlを消してしまったので、戻す。 postgresのバージョンも変更。 ファーマットもspace2個のインデントに修正。 Modified Paths: -------------- eros/maven-jiemamy-plugin/trunk/pom.xml Modified: eros/maven-jiemamy-plugin/trunk/pom.xml =================================================================== --- eros/maven-jiemamy-plugin/trunk/pom.xml 2009-09-20 13:14:11 UTC (rev 3621) +++ eros/maven-jiemamy-plugin/trunk/pom.xml 2009-09-20 14:51:26 UTC (rev 3622) @@ -1,70 +1,77 @@ <?xml version="1.0" encoding="UTF-8"?> <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> - <parent> - <groupId>org.jiemamy</groupId> - <artifactId>master</artifactId> - <version>1.1</version> - </parent> - <groupId>org.jiemamy</groupId> - <artifactId>maven-jiemamy-plugin</artifactId> - <packaging>maven-plugin</packaging> - <name>Jiemamy Maven Plugin</name> - <version>0.2.1-SNAPSHOT</version> - <url>http://report.jiemamy.org/maven-jiemamy-plugin</url> - <issueManagement> - <system>JIRA</system> - <url>http://jira.jiemamy.org/jira/browse/MVN</url> - </issueManagement> - <developers> - <developer> - <id>daisuke</id> - <name>MIYAMOTO Daisuke</name> - <email>daisuke_m****@users*****</email> - <url>http://d.hatena.ne.jp/cepoc/</url> - <timezone>+9</timezone> - </developer> - </developers> - <scm> - <connection>scm:svn:http://svn.sourceforge.jp/svnroot/jiemamy/eros/maven-jiemamy-plugin/trunk</connection> - <developerConnection>scm:svn:svn+ssh://devel****@svn*****/svnroot/eros/maven-jiemamy-plugin/trunk</developerConnection> - <url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/eros/maven-jiemamy-plugin/trunk/?root=jiemamy</url> - </scm> - <repositories> - <repository> - <id>jiemamy.org</id> - <name>Jiemamy Repository</name> - <url>http://maven.jiemamy.org/release</url> - </repository> - </repositories> - <dependencies> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-plugin-api</artifactId> - <version>2.0</version> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.5</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.jiemamy</groupId> - <artifactId>jiemamy-core</artifactId> - <version>0.2.0</version> - </dependency> - <dependency> - <groupId>org.jiemamy</groupId> - <artifactId>jiemamy-dialect-postgresql</artifactId> - <version>0.2.0</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>postgresql</groupId> - <artifactId>postgresql</artifactId> - <version>8.3-603.jdbc4</version> - </dependency> - </dependencies> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.jiemamy</groupId> + <artifactId>master</artifactId> + <version>1.1</version> + </parent> + <groupId>org.jiemamy</groupId> + <artifactId>maven-jiemamy-plugin</artifactId> + <packaging>maven-plugin</packaging> + <name>Jiemamy Maven Plugin</name> + <version>0.2.1-SNAPSHOT</version> + <url>http://report.jiemamy.org/maven-jiemamy-plugin</url> + <issueManagement> + <system>JIRA</system> + <url>http://jira.jiemamy.org/jira/browse/MVN</url> + </issueManagement> + <developers> + <developer> + <id>daisuke</id> + <name>MIYAMOTO Daisuke</name> + <email>daisuke_m****@users*****</email> + <url>http://d.hatena.ne.jp/cepoc/</url> + <timezone>+9</timezone> + </developer> + </developers> + <scm> + <connection>scm:svn:http://svn.sourceforge.jp/svnroot/jiemamy/eros/maven-jiemamy-plugin/trunk</connection> + <developerConnection>scm:svn:svn+ssh://devel****@svn*****/svnroot/eros/maven-jiemamy-plugin/trunk</developerConnection> + <url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/eros/maven-jiemamy-plugin/trunk/?root=jiemamy</url> + </scm> + <repositories> + <repository> + <id>jiemamy.org</id> + <name>Jiemamy Repository</name> + <url>http://maven.jiemamy.org/release</url> + </repository> + </repositories> + <dependencies> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + <version>2.0</version> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.5</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.jiemamy</groupId> + <artifactId>jiemamy-core</artifactId> + <version>0.2.0</version> + </dependency> + <dependency> + <groupId>org.jiemamy</groupId> + <artifactId>jiemamy-dialect-mysql</artifactId> + <version>0.2.0</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.jiemamy</groupId> + <artifactId>jiemamy-dialect-postgresql</artifactId> + <version>0.2.0</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>postgresql</groupId> + <artifactId>postgresql</artifactId> + <version>8.3-603.jdbc3</version> + <scope>test</scope> + </dependency> + </dependencies> </project> \ No newline at end of file