summaryrefslogtreecommitdiffstats
path: root/java/sca/distribution/api
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--java/sca/distribution/api/pom.xml115
-rw-r--r--java/sca/distribution/api/src/main/assembly/bin.xml35
-rw-r--r--java/sca/distribution/api/src/main/assembly/src.xml35
-rw-r--r--java/sca/distribution/api/src/main/components/bin-common.xml44
-rw-r--r--java/sca/distribution/api/src/main/components/bin-modules.xml32
-rw-r--r--java/sca/distribution/api/src/main/components/src-common.xml42
-rw-r--r--java/sca/distribution/api/src/main/components/src-modules.xml43
-rw-r--r--java/sca/distribution/api/src/main/release/bin/NOTICE95
-rw-r--r--java/sca/distribution/api/src/main/release/src/NOTICE39
-rw-r--r--java/sca/distribution/webapp/src/main/release/CHANGES (renamed from java/sca/distribution/api/src/main/release/CHANGES)0
-rw-r--r--java/sca/distribution/webapp/src/main/release/README (renamed from java/sca/distribution/api/src/main/release/README)0
-rw-r--r--java/sca/distribution/webapp/src/main/release/RELEASE_NOTES (renamed from java/sca/distribution/api/src/main/release/RELEASE_NOTES)0
-rw-r--r--java/sca/distribution/webapp/src/main/release/bin/INSTALL (renamed from java/sca/distribution/api/src/main/release/bin/INSTALL)0
-rw-r--r--java/sca/distribution/webapp/src/main/release/bin/LICENSE (renamed from java/sca/distribution/api/src/main/release/bin/LICENSE)0
-rw-r--r--java/sca/distribution/webapp/src/main/release/src/BUILDING (renamed from java/sca/distribution/api/src/main/release/src/BUILDING)0
-rw-r--r--java/sca/distribution/webapp/src/main/release/src/LICENSE (renamed from java/sca/distribution/api/src/main/release/src/LICENSE)0
16 files changed, 0 insertions, 480 deletions
diff --git a/java/sca/distribution/api/pom.xml b/java/sca/distribution/api/pom.xml
deleted file mode 100644
index c023762e29..0000000000
--- a/java/sca/distribution/api/pom.xml
+++ /dev/null
@@ -1,115 +0,0 @@
-<?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-distribution</artifactId>
- <version>2.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
-
- <artifactId>tuscany-distribution-api</artifactId>
- <name>Apache Tuscany SCA API Distribution</name>
- <packaging>pom</packaging>
-
- <dependencies>
-
- <!-- SCA API -->
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-sca-api</artifactId>
- <version>2.0-SNAPSHOT</version>
- </dependency>
-
- <!-- Node API -->
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-node-api</artifactId>
- <version>2.0-SNAPSHOT</version>
- </dependency>
-
- </dependencies>
-
- <profiles>
-
- <!-- Build profile that can be used to build the distro packages -->
- <profile>
- <id>distribution</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-maven-bundle-plugin</artifactId>
- <version>2.0-SNAPSHOT</version>
- <executions>
- <execution>
- <id>distribution-modules</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>generate-modules</goal>
- </goals>
- <configuration>
- <targetDirectory>target/modules</targetDirectory>
- <generateManifestJar>true</generateManifestJar>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <id>distribution-package</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <descriptors>
- <descriptor>src/main/assembly/bin.xml</descriptor>
- <descriptor>src/main/assembly/src.xml</descriptor>
- </descriptors>
- <tarLongFileMode>gnu</tarLongFileMode>
- <finalName>apache-tuscany-sca-api-2.0-SNAPSHOT</finalName>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!-- Profile that can be used to build the modules included in the distro -->
- <profile>
- <id>modules</id>
- <modules>
- <module>../../../modules/node-api</module>
- <module>../../../modules/sca-api</module>
- </modules>
- </profile>
- </profiles>
-
-</project>
diff --git a/java/sca/distribution/api/src/main/assembly/bin.xml b/java/sca/distribution/api/src/main/assembly/bin.xml
deleted file mode 100644
index 3978358b82..0000000000
--- a/java/sca/distribution/api/src/main/assembly/bin.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<?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.
--->
-<assembly>
- <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
- <id>bin</id>
- <includeBaseDirectory>true</includeBaseDirectory>
- <baseDirectory>tuscany-sca-2.0-SNAPSHOT</baseDirectory>
- <formats>
- <format>dir</format>
- <format>tar.gz</format>
- <format>zip</format>
- </formats>
-
- <componentDescriptors>
- <componentDescriptor>src/main/components/bin-common.xml</componentDescriptor>
- <componentDescriptor>src/main/components/bin-modules.xml</componentDescriptor>
- </componentDescriptors>
-</assembly>
diff --git a/java/sca/distribution/api/src/main/assembly/src.xml b/java/sca/distribution/api/src/main/assembly/src.xml
deleted file mode 100644
index 6befe1ce21..0000000000
--- a/java/sca/distribution/api/src/main/assembly/src.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<?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.
--->
-<assembly>
- <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
- <id>src</id>
- <includeBaseDirectory>true</includeBaseDirectory>
- <baseDirectory>tuscany-sca-2.0-SNAPSHOT-src</baseDirectory>
- <formats>
- <format>dir</format>
- <format>tar.gz</format>
- <format>zip</format>
- </formats>
-
- <componentDescriptors>
- <componentDescriptor>src/main/components/src-common.xml</componentDescriptor>
- <componentDescriptor>src/main/components/src-modules.xml</componentDescriptor>
- </componentDescriptors>
-</assembly>
diff --git a/java/sca/distribution/api/src/main/components/bin-common.xml b/java/sca/distribution/api/src/main/components/bin-common.xml
deleted file mode 100644
index c69e8e3699..0000000000
--- a/java/sca/distribution/api/src/main/components/bin-common.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<!--
- * 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.
--->
-<component>
- <fileSets>
-
- <!-- Add the text files to the top-level directroy -->
- <fileSet>
- <directory>src/main/release</directory>
- <outputDirectory></outputDirectory>
- <includes>
- <include>CHANGES</include>
- <include>DISCLAIMER</include>
- <include>README</include>
- <include>RELEASE_NOTES</include>
- </includes>
- </fileSet>
- <fileSet>
- <directory>src/main/release/bin</directory>
- <outputDirectory></outputDirectory>
- <includes>
- <include>INSTALL</include>
- <include>LICENSE</include>
- <include>NOTICE</include>
- </includes>
- </fileSet>
- </fileSets>
-
-</component>
diff --git a/java/sca/distribution/api/src/main/components/bin-modules.xml b/java/sca/distribution/api/src/main/components/bin-modules.xml
deleted file mode 100644
index 5e1c5ec5d6..0000000000
--- a/java/sca/distribution/api/src/main/components/bin-modules.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<!--
- * 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.
--->
-<component>
- <fileSets>
-
- <!-- Add modules to the modules directory -->
- <fileSet>
- <directory>target/modules</directory>
- <outputDirectory>modules</outputDirectory>
- <includes>
- <include>**/*</include>
- </includes>
- </fileSet>
- </fileSets>
-
-</component>
diff --git a/java/sca/distribution/api/src/main/components/src-common.xml b/java/sca/distribution/api/src/main/components/src-common.xml
deleted file mode 100644
index 002df33fc7..0000000000
--- a/java/sca/distribution/api/src/main/components/src-common.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<!--
- * 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.
--->
-<component>
- <fileSets>
- <fileSet>
- <directory>src/main/release</directory>
- <outputDirectory></outputDirectory>
- <includes>
- <include>CHANGES</include>
- <include>DISCLAIMER</include>
- <include>README</include>
- <include>RELEASE_NOTES</include>
- </includes>
- </fileSet>
- <fileSet>
- <directory>src/main/release/src</directory>
- <outputDirectory></outputDirectory>
- <includes>
- <include>BUILDING</include>
- <include>LICENSE</include>
- <include>NOTICE</include>
- </includes>
- </fileSet>
- </fileSets>
-
-</component>
diff --git a/java/sca/distribution/api/src/main/components/src-modules.xml b/java/sca/distribution/api/src/main/components/src-modules.xml
deleted file mode 100644
index 827bea6e2f..0000000000
--- a/java/sca/distribution/api/src/main/components/src-modules.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<!--
- * 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.
--->
-<component>
- <fileSets>
-
- <!-- Add module sources to the modules directory -->
- <fileSet>
- <directory>../../../modules</directory>
- <outputDirectory>modules</outputDirectory>
- <includes>
- <include>node-api/**/*</include>
- <include>sca-api/**/*</include>
- </includes>
- <excludes>
- <!-- General file/folders to exclude -->
- <exclude>**/.*</exclude>
- <exclude>**/.*/**</exclude>
- <exclude>**/*.log</exclude>
-
- <!-- Specific files/folders to exclude -->
- <exclude>pom.xml</exclude>
- <exclude>**/target</exclude>
- <exclude>**/target/**/*</exclude>
- </excludes>
- </fileSet>
- </fileSets>
-</component>
diff --git a/java/sca/distribution/api/src/main/release/bin/NOTICE b/java/sca/distribution/api/src/main/release/bin/NOTICE
deleted file mode 100644
index 5daa9a3dfe..0000000000
--- a/java/sca/distribution/api/src/main/release/bin/NOTICE
+++ /dev/null
@@ -1,95 +0,0 @@
-Apache Tuscany
-Copyright (c) 2005 - 2009 The Apache Software Foundation
-
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-This product includes/uses XmlSchema developed at
-The Apache Software Foundation (http://ws.apache.org/commons/XmlSchema)
- Portions Copyright 2006 International Business Machines Corp.
-
-This product includes/uses ode-bpel-api-1.1 developed at
-The Apache Software Foundation (http://ode.apache.org)
- - Copyright 1999-2006 Intalio - This product includes software developed by Intalio (http://www.intalio.com)
- - Copyright 2006 Sybase - This product includes software developed by Sybase.(http://www.sybase.com)
-
-"This product includes software developed by the Spring Framework
- Project (http://www.springframework.org)."
-
-This product includes/uses the Jetty Servlet Engine (http://jetty.mortbay.org),
-developed by Mort Bay Consulting (http://www.mortbay.com)
-
-This product includes/uses the Groovy Script Engine (http://groovy.codehaus.org/),
-Copyright 2003 (C) James Strachan and Bob Mcwhirter. All Rights Reserved.
-
-This product includes/uses the Axion : the Open Source Java Database (http://axion.tigris.org/)
- Copyright (c) 2002-2003 Axion Development Team. All rights reserved.
-
-This product includes/uses DOM4J : the flexible XML framework for java (http://www.dom4j.org/)
- Copyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved.
-
-This product includes/uses software, AOP alliance (http://aopalliance.sourceforge.net)
-License: Public Domain
-
-This product includes/uses JSON-RPC-Java (http://oss.metaparadigm.com/jsonrpc/)
-
-This product includes/uses JSON-RPC JavaScript client (jsonrpc.js)
- Copyright (c) 2003-2004 Jan-Klaas Kollhof
- Copyright (c) 2005 Michael Clark, Metaparadigm Pte Ltd
-
-This product includes software from the GlassFish project (https://glassfish.dev.java.net/)
- Copyright (c) 2006, Sun Microsystems, Inc.
-
-This product includes software from the Rome project (https://rome.dev.java.net/)
- Copyright (c) 2006, Sun Microsystems, Inc.
-
-This product includes/uses the Eclipse Modeling Framework project (http://www.eclipse.org/emf/)
-
-This product includes/uses the Mozilla Rhino project (http://www.mozilla.org/rhino/)
-
-This product includes/uses the Sourceforge wsdl4j project (http://sourceforge.net/projects/wsdl4j/)i
-
-This product includes/uses the Codehaus JRuby project (http://jruby.codehaus.org/)
-
-This product includes/uses JDOM (http://www.jdom.org/)
- Copyright (C) 2000-2004 Jason Hunter & Brett McLaughlin. All rights reserved.
-
-This product includes/uses DWR (http://getahead.org/dwr)
- Copyright 2005 Joe Walker. All rights reserved.
-
-This product includes/uses dojotoolkit (http://dojotoolkit.org/)
- Copyright (c) 2005, The Dojo Foundation. All rights reserved.
-
-This product includes/uses Howl (http://howl.objectweb.org/)
- Copyright (c) 2004, Bull S.A.
-
-This product includes/uses axion (http://axion.tigris.org/)
- Copyright (c) 2002-2003 Axion Development Team.
-
-This product includes/uses javacc (https://javacc.dev.java.net/)
- Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved.
-
-The Program includes all or portions of the following software: "The
-Saxon XSLT and XQuery Processor from Saxonica Limited" distributed under
-an MPL v1.0 license. Please refer to the homepage URL at
-http://www.saxonica.com/.
-
-This product includes/uses Serp (http://serp.sourceforge.net/) under the BSD license:
- Copyright (c) 2002, A. Abram White. All rights reserved.
-
-This product also includes software under the BSD license
-with the following copyright:
- Copyright (c) 2006, Sun Microsystems, Inc. All rights reserved.
-
-This product includes software under the Service Component Architecture JavaDoc,
-Interface Definition files and XSD files license.
- (c) Copyright SCA Collaboration 2006, 2007
-
-This product includes software under the Service Data Objects JavaDoc and
-Interface Definition file license
-
-(c) Copyright BEA Systems, Inc., International Business Machines Corporation,
-Oracle Corporation, Primeton Technologies Ltd., Rogue Wave Software, SAP AG.,
-Software AG., Sun Microsystems, Sybase Inc., Xcalia, Zend Technologies,
-2005, 2006. All rights reserved.
-
diff --git a/java/sca/distribution/api/src/main/release/src/NOTICE b/java/sca/distribution/api/src/main/release/src/NOTICE
deleted file mode 100644
index 31540fd607..0000000000
--- a/java/sca/distribution/api/src/main/release/src/NOTICE
+++ /dev/null
@@ -1,39 +0,0 @@
-Apache Tuscany
-Copyright (c) 2005 - 2009 The Apache Software Foundation
-
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-This product includes/uses JSON-RPC JavaScript client (jsonrpc.js)
- Copyright (c) 2003-2004 Jan-Klaas Kollhof
- Copyright (c) 2005 Michael Clark, Metaparadigm Pte Ltd
-
-This product also includes software under the BSD license
-(see the LICENSE file contained in this distribution), with
-the following copyright:
- Copyright (c) 2006, Sun Microsystems, Inc. All rights reserved.
-
-This product includes software under the Service Component Architecture JavaDoc,
-Interface Definition files and XSD files license.
- (c) Copyright SCA Collaboration 2006, 2007
-
-This product includes software under the Service Data Objects JavaDoc and
-Interface Definition file license
-
-(c) Copyright BEA Systems, Inc., International Business Machines Corporation,
-Oracle Corporation, Primeton Technologies Ltd., Rogue Wave Software, SAP AG.,
-Software AG., Sun Microsystems, Sybase Inc., Xcalia, Zend Technologies,
-2005, 2006. All rights reserved.
-
-This product includes software under the W3C(c) Software License
-with the following copyright:
-
-Copyright (c) 2008 World Wide Web Consortium, (Massachusetts Institute of Technology,
-European Research Consortium for Informatics and Mathematics, Keio University).
-All Rights Reserved. This work is distributed under the W3C(c) Software License [1] in
-the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
-warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
-
-
diff --git a/java/sca/distribution/api/src/main/release/CHANGES b/java/sca/distribution/webapp/src/main/release/CHANGES
index 3de7358ec6..3de7358ec6 100644
--- a/java/sca/distribution/api/src/main/release/CHANGES
+++ b/java/sca/distribution/webapp/src/main/release/CHANGES
diff --git a/java/sca/distribution/api/src/main/release/README b/java/sca/distribution/webapp/src/main/release/README
index 4d83dcfde9..4d83dcfde9 100644
--- a/java/sca/distribution/api/src/main/release/README
+++ b/java/sca/distribution/webapp/src/main/release/README
diff --git a/java/sca/distribution/api/src/main/release/RELEASE_NOTES b/java/sca/distribution/webapp/src/main/release/RELEASE_NOTES
index a04ef5c553..a04ef5c553 100644
--- a/java/sca/distribution/api/src/main/release/RELEASE_NOTES
+++ b/java/sca/distribution/webapp/src/main/release/RELEASE_NOTES
diff --git a/java/sca/distribution/api/src/main/release/bin/INSTALL b/java/sca/distribution/webapp/src/main/release/bin/INSTALL
index 2da53a2b44..2da53a2b44 100644
--- a/java/sca/distribution/api/src/main/release/bin/INSTALL
+++ b/java/sca/distribution/webapp/src/main/release/bin/INSTALL
diff --git a/java/sca/distribution/api/src/main/release/bin/LICENSE b/java/sca/distribution/webapp/src/main/release/bin/LICENSE
index 5e1f585d46..5e1f585d46 100644
--- a/java/sca/distribution/api/src/main/release/bin/LICENSE
+++ b/java/sca/distribution/webapp/src/main/release/bin/LICENSE
diff --git a/java/sca/distribution/api/src/main/release/src/BUILDING b/java/sca/distribution/webapp/src/main/release/src/BUILDING
index 65d09c5eae..65d09c5eae 100644
--- a/java/sca/distribution/api/src/main/release/src/BUILDING
+++ b/java/sca/distribution/webapp/src/main/release/src/BUILDING
diff --git a/java/sca/distribution/api/src/main/release/src/LICENSE b/java/sca/distribution/webapp/src/main/release/src/LICENSE
index 144d8ae692..144d8ae692 100644
--- a/java/sca/distribution/api/src/main/release/src/LICENSE
+++ b/java/sca/distribution/webapp/src/main/release/src/LICENSE