Author: jsdelfino
Date: Tue Nov 20 16:17:07 2007
New Revision: 596887
URL: http://svn.apache.org/viewvc?rev=596887&view=rev
Log:
Strawman Maven build for the Eclipse plugin.
Added:
incubator/tuscany/java/sca/tools/eclipse/features/feature/pom.xml (with
props)
incubator/tuscany/java/sca/tools/eclipse/plugins/core/pom.xml (with props)
incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/pom.xml (with
props)
Modified:
incubator/tuscany/java/sca/tools/eclipse/features/feature/ (props changed)
incubator/tuscany/java/sca/tools/eclipse/features/feature/feature.xml
incubator/tuscany/java/sca/tools/eclipse/plugins/core/ (props changed)
incubator/tuscany/java/sca/tools/eclipse/plugins/core/META-INF/MANIFEST.MF
incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/ (props changed)
incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/META-INF/MANIFEST.MF
incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/build.properties
incubator/tuscany/java/sca/tools/eclipse/pom.xml
incubator/tuscany/java/sca/tools/eclipse/site/updatesite/site.xml
Propchange: incubator/tuscany/java/sca/tools/eclipse/features/feature/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Nov 20 16:17:07 2007
@@ -0,0 +1,16 @@
+target
+work
+dojo
+*.iws
+*.ipr
+*.iml
+.project
+.classpath
+maven.log
+velocity.log*
+junit*.properties
+surefire*.properties
+.settings
+.deployables
+.wtpmodules
+
Modified: incubator/tuscany/java/sca/tools/eclipse/features/feature/feature.xml
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/features/feature/feature.xml?rev=596887&r1=596886&r2=596887&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tools/eclipse/features/feature/feature.xml
(original)
+++ incubator/tuscany/java/sca/tools/eclipse/features/feature/feature.xml Tue
Nov 20 16:17:07 2007
@@ -20,7 +20,7 @@
<feature
id="org.apache.tuscany.sca.feature"
label="Apache Tuscany SCA Tools"
- version="1.1.0.incubating-SNAPSHOT"
+ version="1.1.0.0-incubating-SNAPSHOT"
provider-name="Apache Software Foundation">
<description url="http://incubator.apache.org/tuscany">
Added: incubator/tuscany/java/sca/tools/eclipse/features/feature/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/features/feature/pom.xml?rev=596887&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tools/eclipse/features/feature/pom.xml (added)
+++ incubator/tuscany/java/sca/tools/eclipse/features/feature/pom.xml Tue Nov
20 16:17:07 2007
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-sca-eclipse-tools</artifactId>
+ <version>1.1-incubating-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <artifactId>org.apache.tuscany.sca.feature</artifactId>
+ <version>1.1.0.0-incubating-SNAPSHOT</version>
+ <name>Apache Tuscany SCA Eclipse Tools Feature</name>
+
+ <build>
+ <finalName>${artifactId}_${project.version}</finalName>
+ <resources>
+ <resource>
+ <directory>${basedir}</directory>
+ <excludes>
+ <exclude>**/.*/**</exclude>
+ <exclude>pom.xml</exclude>
+ <exclude>build.*</exclude>
+ </excludes>
+ </resource>
+ </resources>
+ </build>
+
+</project>
Propchange: incubator/tuscany/java/sca/tools/eclipse/features/feature/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/tuscany/java/sca/tools/eclipse/features/feature/pom.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange: incubator/tuscany/java/sca/tools/eclipse/plugins/core/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Tue Nov 20 16:17:07 2007
@@ -1 +1,16 @@
target
+work
+dojo
+*.iws
+*.ipr
+*.iml
+.project
+.classpath
+maven.log
+velocity.log*
+junit*.properties
+surefire*.properties
+.settings
+.deployables
+.wtpmodules
+
Modified:
incubator/tuscany/java/sca/tools/eclipse/plugins/core/META-INF/MANIFEST.MF
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/plugins/core/META-INF/MANIFEST.MF?rev=596887&r1=596886&r2=596887&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tools/eclipse/plugins/core/META-INF/MANIFEST.MF
(original)
+++ incubator/tuscany/java/sca/tools/eclipse/plugins/core/META-INF/MANIFEST.MF
Tue Nov 20 16:17:07 2007
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Apache Tuscany SCA Tools
Bundle-SymbolicName: org.apache.tuscany.sca.core;singleton:=true
-Bundle-Version: 1.1.0.incubating-SNAPSHOT
+Bundle-Version: 1.1.0.0-incubating-SNAPSHOT
Import-Package: org.eclipse.core.resources,
org.eclipse.core.runtime,
org.eclipse.core.runtime.jobs,
Added: incubator/tuscany/java/sca/tools/eclipse/plugins/core/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/plugins/core/pom.xml?rev=596887&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tools/eclipse/plugins/core/pom.xml (added)
+++ incubator/tuscany/java/sca/tools/eclipse/plugins/core/pom.xml Tue Nov 20
16:17:07 2007
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-sca-eclipse-tools</artifactId>
+ <version>1.1-incubating-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <artifactId>org.apache.tuscany.sca.core</artifactId>
+ <version>1.1.0.0-incubating-SNAPSHOT</version>
+ <name>Apache Tuscany SCA Eclipse Tools Core Plugin</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.jdt.debug</groupId>
+ <artifactId>ui</artifactId>
+ <version>3.2.100-v20070531-1800</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.swt.win32.win32</groupId>
+ <artifactId>x86</artifactId>
+ <version>3.3.0-v3346</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <finalName>${artifactId}_${project.version}</finalName>
+ <resources>
+ <resource>
+ <directory>${basedir}</directory>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ <exclude>**/.*/**</exclude>
+ <exclude>pom.xml</exclude>
+ <exclude>build.*</exclude>
+ </excludes>
+ </resource>
+ </resources>
+ </build>
+
+ <repositories>
+ <repository>
+ <id>repo1.eclipse</id>
+ <url>http://repo1.maven.org/eclipse/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+
+</project>
Propchange: incubator/tuscany/java/sca/tools/eclipse/plugins/core/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/tuscany/java/sca/tools/eclipse/plugins/core/pom.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange: incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Nov 20 16:17:07 2007
@@ -0,0 +1,16 @@
+target
+work
+dojo
+*.iws
+*.ipr
+*.iml
+.project
+.classpath
+maven.log
+velocity.log*
+junit*.properties
+surefire*.properties
+.settings
+.deployables
+.wtpmodules
+
Modified:
incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/META-INF/MANIFEST.MF
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/META-INF/MANIFEST.MF?rev=596887&r1=596886&r2=596887&view=diff
==============================================================================
---
incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/META-INF/MANIFEST.MF
(original)
+++
incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/META-INF/MANIFEST.MF
Tue Nov 20 16:17:07 2007
@@ -2,5 +2,5 @@
Bundle-ManifestVersion: 2
Bundle-Name: Apache Tuscany SCA Runtime
Bundle-SymbolicName: org.apache.tuscany.sca.runtime
-Bundle-Version: 1.1.0.incubating-SNAPSHOT
+Bundle-Version: 1.1.0.0-incubating-SNAPSHOT
Bundle-Vendor: Apache Software Foundation
Modified:
incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/build.properties
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/build.properties?rev=596887&r1=596886&r2=596887&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/build.properties
(original)
+++ incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/build.properties
Tue Nov 20 16:17:07 2007
@@ -2,7 +2,9 @@
DISCLAIMER,\
LICENSE,\
NOTICE,\
- lib/
+ lib/,\
+ src/,\
+ BUILDING
src.includes = src/,\
.project,\
BUILDING,\
Added: incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/pom.xml?rev=596887&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/pom.xml (added)
+++ incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/pom.xml Tue Nov 20
16:17:07 2007
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-sca-eclipse-tools</artifactId>
+ <version>1.1-incubating-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <artifactId>org.apache.tuscany.sca.runtime</artifactId>
+ <version>1.1.0.0-incubating-SNAPSHOT</version>
+ <name>Apache Tuscany SCA Eclipse Tools Runtime Plugin</name>
+
+ <build>
+ <finalName>${artifactId}_${project.version}</finalName>
+ <resources>
+ <resource>
+ <directory>${basedir}</directory>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ <exclude>**/.*/**</exclude>
+ <exclude>pom.xml</exclude>
+ <exclude>build.*</exclude>
+ </excludes>
+ </resource>
+ </resources>
+ </build>
+
+</project>
Propchange: incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/tuscany/java/sca/tools/eclipse/plugins/runtime/pom.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Modified: incubator/tuscany/java/sca/tools/eclipse/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/pom.xml?rev=596887&r1=596886&r2=596887&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tools/eclipse/pom.xml (original)
+++ incubator/tuscany/java/sca/tools/eclipse/pom.xml Tue Nov 20 16:17:07 2007
@@ -37,6 +37,9 @@
<activeByDefault>true</activeByDefault>
</activation>
<modules>
+ <module>features/feature</module>
+ <module>plugins/core</module>
+ <module>plugins/runtime</module>
</modules>
</profile>
</profiles>
Modified: incubator/tuscany/java/sca/tools/eclipse/site/updatesite/site.xml
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/eclipse/site/updatesite/site.xml?rev=596887&r1=596886&r2=596887&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tools/eclipse/site/updatesite/site.xml (original)
+++ incubator/tuscany/java/sca/tools/eclipse/site/updatesite/site.xml Tue Nov
20 16:17:07 2007
@@ -3,5 +3,5 @@
<description
url="http://people.apache.org/~jsdelfino/tuscany/tools/updatesite">
Apache Tuscany SCA Tools.
</description>
- <feature
url="features/org.apache.tuscany.sca.feature_1.1.0.incubating-SNAPSHOT.jar"
id="org.apache.tuscany.sca.feature" version="1.1.0.incubating-SNAPSHOT"/>
+ <feature
url="features/org.apache.tuscany.sca.feature_1.1.0.0-incubating-SNAPSHOT.jar"
id="org.apache.tuscany.sca.feature" version="1.1.0.0-incubating-SNAPSHOT"/>
</site>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]