From: <fu...@us...> - 2010-11-20 00:24:29
|
Revision: 1172 http://cishell.svn.sourceforge.net/cishell/?rev=1172&view=rev Author: fugu13 Date: 2010-11-20 00:24:23 +0000 (Sat, 20 Nov 2010) Log Message: ----------- committing a simple feature before I forget. Real Features (TM) coming later Added Paths: ----------- branches/tycho/deployment/ branches/tycho/deployment/deployment-parent/ branches/tycho/deployment/deployment-parent/pom.xml branches/tycho/deployment/org.cishell.feature/ branches/tycho/deployment/org.cishell.feature/build.properties branches/tycho/deployment/org.cishell.feature/feature.xml branches/tycho/deployment/org.cishell.feature/pom.xml Added: branches/tycho/deployment/deployment-parent/pom.xml =================================================================== --- branches/tycho/deployment/deployment-parent/pom.xml (rev 0) +++ branches/tycho/deployment/deployment-parent/pom.xml 2010-11-20 00:24:23 UTC (rev 1172) @@ -0,0 +1,52 @@ +<?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> + + <version>1.0.0</version> + <groupId>org.cishell</groupId> + <artifactId>deployment-parent</artifactId> + <packaging>pom</packaging> + <name>CIShell Deployment Parent</name> + + <properties> + <tycho-version>0.10.0</tycho-version> + <tycho-groupid>org.sonatype.tycho</tycho-groupid> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <modules> + <module>../org.cishell.feature</module> + <module>../../core</module> + </modules> + + <repositories> + <repository> + <id>ganymede</id> + <layout>p2</layout> + <url>http://download.eclipse.org/releases/ganymede</url> + </repository> + </repositories> + + + <build> + <plugins> + <plugin> + <groupId>${tycho-groupid}</groupId> + <artifactId>tycho-maven-plugin</artifactId> + <version>${tycho-version}</version> + <extensions>true</extensions> + </plugin> + <plugin> + <groupId>org.sonatype.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho-version}</version> + <configuration> + <resolver>p2</resolver> + <pomDependencies>consider</pomDependencies> + </configuration> + </plugin> + + </plugins> + </build> +</project> Added: branches/tycho/deployment/org.cishell.feature/build.properties =================================================================== --- branches/tycho/deployment/org.cishell.feature/build.properties (rev 0) +++ branches/tycho/deployment/org.cishell.feature/build.properties 2010-11-20 00:24:23 UTC (rev 1172) @@ -0,0 +1 @@ +bin.includes = feature.xml Added: branches/tycho/deployment/org.cishell.feature/feature.xml =================================================================== --- branches/tycho/deployment/org.cishell.feature/feature.xml (rev 0) +++ branches/tycho/deployment/org.cishell.feature/feature.xml 2010-11-20 00:24:23 UTC (rev 1172) @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8"?> +<feature + id="org.cishell.feature" + label="CIShell Framework API Feature" + version="1.0.0"> + + <description url="http://cishell.org"> + CIShell Framework API + </description> + + <copyright> + Copyright 2006 Indiana University + </copyright> + + <license url="http://www.apache.org/licenses/LICENSE-2.0"> + CIShell: Cyberinfrastructure Shell +Copyright 2006 Indiana University +Licensed 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 Contacts: +Bruce Herr (bh...@bh...) +Weixia Huang (hu...@in...) +Shashikant Penumarthy (sp...@in...) +Dr. Katy Borner (ka...@in...) + </license> + + <url> + <update label="CIShell Update Site" url="http://cishell.org/update"/> + <discovery label="CIShell Update Site" url="http://cishell.org/update"/> + </url> + + <plugin + id="org.cishell.framework" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + +</feature> Added: branches/tycho/deployment/org.cishell.feature/pom.xml =================================================================== --- branches/tycho/deployment/org.cishell.feature/pom.xml (rev 0) +++ branches/tycho/deployment/org.cishell.feature/pom.xml 2010-11-20 00:24:23 UTC (rev 1172) @@ -0,0 +1,18 @@ +<?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> + + <version>1.0.0</version> + <artifactId>org.cishell.feature</artifactId> + <packaging>eclipse-feature</packaging> + <name>CIShell Framework API Feature</name> + + <parent> + <version>1.0.0</version> + <groupId>org.cishell</groupId> + <artifactId>deployment-parent</artifactId> + <relativePath>../deployment-parent/pom.xml</relativePath> + </parent> + +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |