svnno****@sourc*****
svnno****@sourc*****
2009年 3月 7日 (土) 01:19:56 JST
Revision: 2836 http://svn.sourceforge.jp/view?root=jiemamy&view=rev&rev=2836 Author: daisuke_m Date: 2009-03-07 01:19:56 +0900 (Sat, 07 Mar 2009) Log Message: ----------- org.jiemamy.eclipse → org.jiemamy.eclipse.ui リネーム準備。 Modified Paths: -------------- artemis/trunk/jiemamy-artemis-test/src/test/java/org/jiemamy/FileCommentTest.java vesta/trunk/jiemamy-vesta/pom.xml vesta/trunk/org.jiemamy.eclipse/META-INF/MANIFEST.MF vesta/trunk/org.jiemamy.eclipse/pom.xml vesta/trunk/org.jiemamy.eclipse.core/schema/dialects.exsd vesta/trunk/org.jiemamy.eclipse.core/schema/exporters.exsd vesta/trunk/org.jiemamy.eclipse.core/schema/importers.exsd vesta/trunk/org.jiemamy.eclipse.core/schema/validators.exsd vesta/trunk/org.jiemamy.eclipse.dialect.mysql/pom.xml -------------- next part -------------- Modified: artemis/trunk/jiemamy-artemis-test/src/test/java/org/jiemamy/FileCommentTest.java =================================================================== --- artemis/trunk/jiemamy-artemis-test/src/test/java/org/jiemamy/FileCommentTest.java 2009-03-06 16:09:40 UTC (rev 2835) +++ artemis/trunk/jiemamy-artemis-test/src/test/java/org/jiemamy/FileCommentTest.java 2009-03-06 16:19:56 UTC (rev 2836) @@ -76,7 +76,8 @@ list.add("jiemamy-dialect-mysql"); list.add("jiemamy-artemis-test"); - list.add("org.jiemamy.eclipse"); + list.add("org.jiemamy.eclipse.core"); + list.add("org.jiemamy.eclipse.ui"); list.add("org.jiemamy.eclipse.dialect.sql99"); list.add("org.jiemamy.eclipse.dialect.postgresql"); list.add("org.jiemamy.eclipse.dialect.mysql"); Modified: vesta/trunk/jiemamy-vesta/pom.xml =================================================================== --- vesta/trunk/jiemamy-vesta/pom.xml 2009-03-06 16:09:40 UTC (rev 2835) +++ vesta/trunk/jiemamy-vesta/pom.xml 2009-03-06 16:19:56 UTC (rev 2836) @@ -78,7 +78,7 @@ </scm> <modules> <module>../org.jiemamy.eclipse.core</module> - <module>../org.jiemamy.eclipse</module> + <module>../org.jiemamy.eclipse.ui</module> <module>../org.jiemamy.eclipse.dialect.mysql</module> <module>../org.jiemamy.eclipse.dialect.postgresql</module> <module>../org.jiemamy.eclipse.dialect.sql99</module> Modified: vesta/trunk/org.jiemamy.eclipse/META-INF/MANIFEST.MF =================================================================== --- vesta/trunk/org.jiemamy.eclipse/META-INF/MANIFEST.MF 2009-03-06 16:09:40 UTC (rev 2835) +++ vesta/trunk/org.jiemamy.eclipse/META-INF/MANIFEST.MF 2009-03-06 16:19:56 UTC (rev 2836) @@ -38,4 +38,4 @@ org.jiemamy.eclipse.utils, org.jiemamy.eclipse.wizard Eclipse-BuddyPolicy: registered -Eclipse-RegisterBuddy: org.jiemamy.eclipse +Eclipse-RegisterBuddy: org.jiemamy.eclipse.core Modified: vesta/trunk/org.jiemamy.eclipse/pom.xml =================================================================== --- vesta/trunk/org.jiemamy.eclipse/pom.xml 2009-03-06 16:09:40 UTC (rev 2835) +++ vesta/trunk/org.jiemamy.eclipse/pom.xml 2009-03-06 16:19:56 UTC (rev 2836) @@ -10,7 +10,7 @@ <relativePath>../jiemamy-vesta</relativePath> </parent> <groupId>org.jiemamy</groupId> - <artifactId>org.jiemamy.eclipse</artifactId> + <artifactId>org.jiemamy.eclipse.ui</artifactId> <name>Jiemamy Eclipse Model Editor Plugin</name> <version>0.2.0-SNAPSHOT</version> <description>Jiemamy Eclipse Model Editor Plugin</description> @@ -30,9 +30,9 @@ </developer> </developers> <scm> - <connection>scm:svn:http://svn.sourceforge.jp/svnroot/jiemamy/artemis/trunk/org.jiemamy.eclipse</connection> - <developerConnection>scm:svn:svn+ssh://svn.sourceforge.jp/svnroot/jiemamy/artemis/trunk/org.jiemamy.eclipse</developerConnection> - <url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/artemis/trunk/org.jiemamy.eclipse/?root=jiemamy</url> + <connection>scm:svn:http://svn.sourceforge.jp/svnroot/jiemamy/artemis/trunk/org.jiemamy.eclipse.ui</connection> + <developerConnection>scm:svn:svn+ssh://svn.sourceforge.jp/svnroot/jiemamy/artemis/trunk/org.jiemamy.eclipse.ui</developerConnection> + <url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/artemis/trunk/org.jiemamy.eclipse.ui/?root=jiemamy</url> </scm> <build> <plugins> Modified: vesta/trunk/org.jiemamy.eclipse.core/schema/dialects.exsd =================================================================== --- vesta/trunk/org.jiemamy.eclipse.core/schema/dialects.exsd 2009-03-06 16:09:40 UTC (rev 2835) +++ vesta/trunk/org.jiemamy.eclipse.core/schema/dialects.exsd 2009-03-06 16:19:56 UTC (rev 2836) @@ -1,9 +1,9 @@ <?xml version='1.0' encoding='UTF-8'?> <!-- Schema file written by PDE --> -<schema targetNamespace="org.jiemamy.eclipse" xmlns="http://www.w3.org/2001/XMLSchema"> +<schema targetNamespace="org.jiemamy.eclipse.core" xmlns="http://www.w3.org/2001/XMLSchema"> <annotation> <appinfo> - <meta.schema plugin="org.jiemamy.eclipse" id="dialects" name="%plugin.extension.dialects"/> + <meta.schema plugin="org.jiemamy.eclipse.core" id="dialects" name="%plugin.extension.dialects"/> </appinfo> <documentation> This extension point is used to plug in additional SQL dialects. An SQL dialect is an object that knows about the restrictions and data types of a Relational Database Management System (RDBMS). Also, a dialect knows how to generate SQL for a given RDBMS. Modified: vesta/trunk/org.jiemamy.eclipse.core/schema/exporters.exsd =================================================================== --- vesta/trunk/org.jiemamy.eclipse.core/schema/exporters.exsd 2009-03-06 16:09:40 UTC (rev 2835) +++ vesta/trunk/org.jiemamy.eclipse.core/schema/exporters.exsd 2009-03-06 16:19:56 UTC (rev 2836) @@ -1,9 +1,9 @@ <?xml version='1.0' encoding='UTF-8'?> <!-- Schema file written by PDE --> -<schema targetNamespace="org.jiemamy.eclipse" xmlns="http://www.w3.org/2001/XMLSchema"> +<schema targetNamespace="org.jiemamy.eclipse.core" xmlns="http://www.w3.org/2001/XMLSchema"> <annotation> <appinfo> - <meta.schema plugin="org.jiemamy.eclipse" id="exporters" name="%plugin.extension.porters"/> + <meta.schema plugin="org.jiemamy.eclipse.core" id="exporters" name="%plugin.extension.porters"/> </appinfo> <documentation> Modified: vesta/trunk/org.jiemamy.eclipse.core/schema/importers.exsd =================================================================== --- vesta/trunk/org.jiemamy.eclipse.core/schema/importers.exsd 2009-03-06 16:09:40 UTC (rev 2835) +++ vesta/trunk/org.jiemamy.eclipse.core/schema/importers.exsd 2009-03-06 16:19:56 UTC (rev 2836) @@ -1,9 +1,9 @@ <?xml version='1.0' encoding='UTF-8'?> <!-- Schema file written by PDE --> -<schema targetNamespace="org.jiemamy.eclipse" xmlns="http://www.w3.org/2001/XMLSchema"> +<schema targetNamespace="org.jiemamy.eclipse.core" xmlns="http://www.w3.org/2001/XMLSchema"> <annotation> <appinfo> - <meta.schema plugin="org.jiemamy.eclipse" id="importers" name="%plugin.extension.porters"/> + <meta.schema plugin="org.jiemamy.eclipse.core" id="importers" name="%plugin.extension.porters"/> </appinfo> <documentation> Modified: vesta/trunk/org.jiemamy.eclipse.core/schema/validators.exsd =================================================================== --- vesta/trunk/org.jiemamy.eclipse.core/schema/validators.exsd 2009-03-06 16:09:40 UTC (rev 2835) +++ vesta/trunk/org.jiemamy.eclipse.core/schema/validators.exsd 2009-03-06 16:19:56 UTC (rev 2836) @@ -1,9 +1,9 @@ <?xml version='1.0' encoding='UTF-8'?> <!-- Schema file written by PDE --> -<schema targetNamespace="org.jiemamy.eclipse"> +<schema targetNamespace="org.jiemamy.eclipse.core"> <annotation> <appInfo> - <meta.schema plugin="org.jiemamy.eclipse" id="validators" name="%plugin.extension.validators"/> + <meta.schema plugin="org.jiemamy.eclipse.core" id="validators" name="%plugin.extension.validators"/> </appInfo> <documentation> This extension point is used to plug in additional model validators. Modified: vesta/trunk/org.jiemamy.eclipse.dialect.mysql/pom.xml =================================================================== --- vesta/trunk/org.jiemamy.eclipse.dialect.mysql/pom.xml 2009-03-06 16:09:40 UTC (rev 2835) +++ vesta/trunk/org.jiemamy.eclipse.dialect.mysql/pom.xml 2009-03-06 16:19:56 UTC (rev 2836) @@ -107,7 +107,7 @@ </dependency> <dependency> <groupId>${project.groupId}</groupId> - <artifactId>org.jiemamy.eclipse</artifactId> + <artifactId>org.jiemamy.eclipse.ui</artifactId> <version>${project.version}</version> </dependency> <dependency>