You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2020/06/11 02:43:56 UTC

[tomee-patch-plugin] 01/02: Initial plugin layout

This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-patch-plugin.git

commit 9a4b40ee29de46d0f1b48e7352cf9a570fb840da
Author: David Blevins <da...@gmail.com>
AuthorDate: Wed Jun 10 18:12:53 2020 -0700

    Initial plugin layout
---
 .gitignore                 | 23 ++++++++++++
 pom.xml                    | 88 ++++++++++++++++++++++++++++++++++++++++++++++
 tomee-patch-core/pom.xml   | 34 ++++++++++++++++++
 tomee-patch-plugin/pom.xml | 35 ++++++++++++++++++
 4 files changed, 180 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..da38c0a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,23 @@
+target
+.classpath
+.project
+.settings
+.idea
+*.ipr
+*.iml
+*.log
+*.vscode
+*~
+quick.bat
+/tomee/tomee-plume-webapp/overlays/
+/tomee/tomee-plus-webapp/overlays/
+/temp
+/report.txt
+nb-configuration.xml
+.factorypath
+.history
+**/test/key
+tck/**/temp
+examples/jaxrs-json-provider-jettison/temp/
+transformer/jakartaee-prototype/
+transformer/transformer-0.1.0-SNAPSHOT/
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..de443de
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,88 @@
+<?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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<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</groupId>
+    <artifactId>apache</artifactId>
+    <version>21</version>
+    <relativePath><!--Resolve on repository--></relativePath>
+  </parent>
+
+
+  <groupId>org.apache.tomee.patch</groupId>
+  <artifactId>tomee-patch-parent</artifactId>
+  <packaging>pom</packaging>
+  <version>0.1-SNAPSHOT</version>
+
+  <name>Apache TomEE Patch Plugin</name>
+  <description>Tools and Maven Plugin to help complete the javax-to-jakarta bytecode transformation</description>
+  <url>http://tomee.apache.org</url>
+  <inceptionYear>1999</inceptionYear>
+
+  <prerequisites>
+    <maven>3.2.5</maven>
+  </prerequisites>
+
+  <scm>
+    <connection>scm:git:git@github.com:apache/tomee-patch-plugin.git</connection>
+    <url>scm:git:git@github.com:apache/tomee-patch-plugin.git</url>
+    <developerConnection>scm:git:git@github.com:apache/tomee-patch-plugin.git</developerConnection>
+    <tag>HEAD</tag>
+  </scm>
+
+  <issueManagement>
+    <system>jira</system>
+    <url>http://issues.apache.org/jira/browse/TOMEE</url>
+  </issueManagement>
+
+  <mailingLists>
+    <mailingList>
+      <name>TomEE Commits List</name>
+      <subscribe>commits-subscribe@tomee.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@tomee.apache.org</unsubscribe>
+      <post>commits@tomee.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/tomee-commits/</archive>
+    </mailingList>
+    <mailingList>
+      <name>TomEE Developer List</name>
+      <subscribe>dev-subscribe@tomee.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@tomee.apache.org</unsubscribe>
+      <post>dev@tomee.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/tomee-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>TomEE Users List</name>
+      <subscribe>users-subscribe@tomee.apache.org</subscribe>
+      <unsubscribe>users-unsubscribe@tomee.apache.org</unsubscribe>
+      <post>users@tomee.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/tomee-users/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <modules>
+    <module>tomee-patch-core</module>
+    <module>tomee-patch-plugin</module>
+  </modules>
+</project>
+
diff --git a/tomee-patch-core/pom.xml b/tomee-patch-core/pom.xml
new file mode 100644
index 0000000..93e381c
--- /dev/null
+++ b/tomee-patch-core/pom.xml
@@ -0,0 +1,34 @@
+<?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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<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.tomee.patch</groupId>
+    <artifactId>tomee-patch-parent</artifactId>
+    <version>0.1-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>tomee-patch-core</artifactId>
+  
+</project>
+
diff --git a/tomee-patch-plugin/pom.xml b/tomee-patch-plugin/pom.xml
new file mode 100644
index 0000000..5ed2fb9
--- /dev/null
+++ b/tomee-patch-plugin/pom.xml
@@ -0,0 +1,35 @@
+<?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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<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.tomee.patch</groupId>
+    <artifactId>tomee-patch-parent</artifactId>
+    <version>0.1-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>tomee-patch-plugin</artifactId>
+  <packaging>maven-plugin</packaging>
+
+</project>
+