You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2013/09/18 12:33:21 UTC

svn commit: r1524358 - in /webservices/axiom/trunk: ./ forbiddenapi-signatures/ forbiddenapi-signatures/src/ forbiddenapi-signatures/src/main/ forbiddenapi-signatures/src/main/resources/ forbiddenapi-signatures/src/main/resources/de/ forbiddenapi-signa...

Author: veithen
Date: Wed Sep 18 10:33:20 2013
New Revision: 1524358

URL: http://svn.apache.org/r1524358
Log:
Created a signature file for forbidden-api to make it easier to detect usages of non-public/deprecated Axiom APIs.

Added:
    webservices/axiom/trunk/forbiddenapi-signatures/   (with props)
    webservices/axiom/trunk/forbiddenapi-signatures/pom.xml   (with props)
    webservices/axiom/trunk/forbiddenapi-signatures/src/
    webservices/axiom/trunk/forbiddenapi-signatures/src/main/
    webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/
    webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/de/
    webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/de/thetaphi/
    webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/de/thetaphi/forbiddenapis/
    webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/de/thetaphi/forbiddenapis/signatures/
    webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/de/thetaphi/forbiddenapis/signatures/axiom.txt   (with props)
Modified:
    webservices/axiom/trunk/pom.xml

Propchange: webservices/axiom/trunk/forbiddenapi-signatures/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Sep 18 10:33:20 2013
@@ -0,0 +1,4 @@
+.classpath
+.project
+target
+.settings

Added: webservices/axiom/trunk/forbiddenapi-signatures/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/forbiddenapi-signatures/pom.xml?rev=1524358&view=auto
==============================================================================
--- webservices/axiom/trunk/forbiddenapi-signatures/pom.xml (added)
+++ webservices/axiom/trunk/forbiddenapi-signatures/pom.xml Wed Sep 18 10:33:20 2013
@@ -0,0 +1,41 @@
+<?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 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>
+    <parent>
+        <groupId>org.apache.ws.commons.axiom</groupId>
+        <artifactId>axiom</artifactId>
+        <version>1.2.15-SNAPSHOT</version>
+    </parent>
+    <artifactId>forbiddenapi-signatures</artifactId>
+    <name>Signature files for forbidden-api</name>
+    <description>Contains signature files for the forbidden-api Maven plugin. This can be used to check that a project doesn't use any forbidden or deprecated Axiom APIs.</description>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                    <skipDeploy>true</skipDeploy>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: webservices/axiom/trunk/forbiddenapi-signatures/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/de/thetaphi/forbiddenapis/signatures/axiom.txt
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/de/thetaphi/forbiddenapis/signatures/axiom.txt?rev=1524358&view=auto
==============================================================================
--- webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/de/thetaphi/forbiddenapis/signatures/axiom.txt (added)
+++ webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/de/thetaphi/forbiddenapis/signatures/axiom.txt Wed Sep 18 10:33:20 2013
@@ -0,0 +1,23 @@
+#
+# 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.
+#
+@defaultMessage Use OMXMLBuilderFactory to create a builder; use OMXMLParserWrapper to interact with the builder
+org.apache.axiom.om.impl.builder.StAXBuilder
+org.apache.axiom.om.impl.builder.StAXOMBuilder
+@defaultMessage Use OMXMLBuilderFactory to create a builder; use OMXMLParserWrapper or SOAPModelBuilder to interact with the builder
+org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder

Propchange: webservices/axiom/trunk/forbiddenapi-signatures/src/main/resources/de/thetaphi/forbiddenapis/signatures/axiom.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: webservices/axiom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/pom.xml?rev=1524358&r1=1524357&r2=1524358&view=diff
==============================================================================
--- webservices/axiom/trunk/pom.xml (original)
+++ webservices/axiom/trunk/pom.xml Wed Sep 18 10:33:20 2013
@@ -776,6 +776,7 @@
         <module>modules/axiom-samples</module>
         <module>axiom-spring-ws</module>
         <module>systests</module>
+        <module>forbiddenapi-signatures</module>
         <module>devguide</module>
         <module>userguide</module>
         <module>apidocs</module>