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 <[email protected]> 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:[email protected]:apache/tomee-patch-plugin.git</connection> + <url>scm:git:[email protected]:apache/tomee-patch-plugin.git</url> + <developerConnection>scm:git:[email protected]: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>[email protected]</subscribe> + <unsubscribe>[email protected]</unsubscribe> + <post>[email protected]</post> + <archive>http://mail-archives.apache.org/mod_mbox/tomee-commits/</archive> + </mailingList> + <mailingList> + <name>TomEE Developer List</name> + <subscribe>[email protected]</subscribe> + <unsubscribe>[email protected]</unsubscribe> + <post>[email protected]</post> + <archive>http://mail-archives.apache.org/mod_mbox/tomee-dev/</archive> + </mailingList> + <mailingList> + <name>TomEE Users List</name> + <subscribe>[email protected]</subscribe> + <unsubscribe>[email protected]</unsubscribe> + <post>[email protected]</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> +
