Author: charithcc Date: Wed May 2 07:40:02 2012 New Revision: 1332946 URL: http://svn.apache.org/viewvc?rev=1332946&view=rev Log: SIS-46 Add sis-app module to current SIS project
Added: incubator/sis/trunk/sis-app/ incubator/sis/trunk/sis-app/pom.xml incubator/sis/trunk/sis-app/src/ incubator/sis/trunk/sis-app/src/main/ incubator/sis/trunk/sis-app/src/main/java/ incubator/sis/trunk/sis-app/src/main/java/org/ incubator/sis/trunk/sis-app/src/main/java/org/apache/ incubator/sis/trunk/sis-app/src/main/java/org/apache/sis/ incubator/sis/trunk/sis-app/src/main/java/org/apache/sis/cli/ incubator/sis/trunk/sis-app/src/main/java/org/apache/sis/cli/SISCLI.java Modified: incubator/sis/trunk/CHANGES.txt incubator/sis/trunk/pom.xml Modified: incubator/sis/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/incubator/sis/trunk/CHANGES.txt?rev=1332946&r1=1332945&r2=1332946&view=diff ============================================================================== --- incubator/sis/trunk/CHANGES.txt (original) +++ incubator/sis/trunk/CHANGES.txt Wed May 2 07:40:02 2012 @@ -3,6 +3,8 @@ Apache SIS Change Log Release 0.3-incubating - Current Development +* SIS-46 Add sis-app module to current SIS project (Charithcc) + * SIS-44 Update the 'demo.jsp' file in the SIS webapp to use an open source maps API (Ross Laidlaw via mattmann) Modified: incubator/sis/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/sis/trunk/pom.xml?rev=1332946&r1=1332945&r2=1332946&view=diff ============================================================================== --- incubator/sis/trunk/pom.xml (original) +++ incubator/sis/trunk/pom.xml Wed May 2 07:40:02 2012 @@ -48,6 +48,7 @@ <module>sis-parent</module> <module>sis-core</module> <module>sis-webapp</module> + <module>sis-app</module> </modules> <build> Added: incubator/sis/trunk/sis-app/pom.xml URL: http://svn.apache.org/viewvc/incubator/sis/trunk/sis-app/pom.xml?rev=1332946&view=auto ============================================================================== --- incubator/sis/trunk/sis-app/pom.xml (added) +++ incubator/sis/trunk/sis-app/pom.xml Wed May 2 07:40:02 2012 @@ -0,0 +1,63 @@ +<?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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.sis</groupId> + <artifactId>sis-parent</artifactId> + <version>0.3-incubating-SNAPSHOT</version> + <relativePath>../sis-parent/pom.xml</relativePath> + </parent> + + <artifactId>sis-app</artifactId> + <packaging>bundle</packaging> + <name>Apache SIS app</name> + <url>http://incubator.apache.org/sis/</url> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <version>2.0.0</version> + <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package> + org.apache.sis.cli + </Export-Package> + <Main-Class>org.apache.sis.cli.SISCLI</Main-Class> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + +</project> \ No newline at end of file Added: incubator/sis/trunk/sis-app/src/main/java/org/apache/sis/cli/SISCLI.java URL: http://svn.apache.org/viewvc/incubator/sis/trunk/sis-app/src/main/java/org/apache/sis/cli/SISCLI.java?rev=1332946&view=auto ============================================================================== --- incubator/sis/trunk/sis-app/src/main/java/org/apache/sis/cli/SISCLI.java (added) +++ incubator/sis/trunk/sis-app/src/main/java/org/apache/sis/cli/SISCLI.java Wed May 2 07:40:02 2012 @@ -0,0 +1,31 @@ +/* + * 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. + */ +package org.apache.sis.cli; + +/** + * Command line interface for Apache SIS + */ +public class SISCLI { + + /** + * Main method + */ + public static void main(String[] args) { + + } + +} \ No newline at end of file