This is an automated email from the ASF dual-hosted git repository.
dblevins pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-patch-plugin.git.
from 2a06d9f Initial code forked from https://github.com/tomitribe/jkta
new ebe5dad Rough compilation capabilities lifted from
maven-compile-plugin
new c58fe32 Build a compile-time classpath from the zips being patched
new b8f5475 Remove fields not used
new ec32c94 Very nearly functional jar-patching
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../{AnnotationTransformer.java => Clazz.java} | 38 +-
.../main/java/org/apache/tomee/patch/core/Log.java | 35 ++
.../java/org/apache/tomee/patch/core/NullLog.java | 99 +++++
.../apache/tomee/patch/core/Transformation.java | 128 +++++-
tomee-patch-plugin/pom.xml | 49 ++-
.../patch/plugin/CompilationFailureException.java | 85 ++++
.../org/apache/tomee/patch/plugin/MavenLog.java | 76 ++++
.../org/apache/tomee/patch/plugin/PatchMojo.java | 430 +++++++++++++++++++++
.../apache/tomee/patch/plugin/TransformMojo.java | 33 --
9 files changed, 925 insertions(+), 48 deletions(-)
copy
tomee-patch-core/src/main/java/org/apache/tomee/patch/core/{AnnotationTransformer.java
=> Clazz.java} (53%)
create mode 100644
tomee-patch-core/src/main/java/org/apache/tomee/patch/core/Log.java
create mode 100644
tomee-patch-core/src/main/java/org/apache/tomee/patch/core/NullLog.java
create mode 100644
tomee-patch-plugin/src/main/java/org/apache/tomee/patch/plugin/CompilationFailureException.java
create mode 100644
tomee-patch-plugin/src/main/java/org/apache/tomee/patch/plugin/MavenLog.java
create mode 100644
tomee-patch-plugin/src/main/java/org/apache/tomee/patch/plugin/PatchMojo.java
delete mode 100644
tomee-patch-plugin/src/main/java/org/apache/tomee/patch/plugin/TransformMojo.java