This is an automated email from the ASF dual-hosted git repository. fokko pushed a commit to branch branch-1.9 in repository https://gitbox.apache.org/repos/asf/avro.git
commit 0169398211e688d8e61beb272703cb9891d5ae97 Author: Fokko Driesprong <[email protected]> AuthorDate: Wed Apr 24 14:31:37 2019 +0200 [AVRO-XXX] Fix the build scripts --- build.sh | 6 +++--- pom.xml | 12 ------------ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/build.sh b/build.sh index 003a164..6089d54 100755 --- a/build.sh +++ b/build.sh @@ -101,11 +101,11 @@ do exit -1; fi - #runs RAT on artifacts - mvn -N -P rat antrun:run + # runs RAT on artifacts + mvn -N -P rat antrun:run verify mkdir -p dist - (cd build; tar czf ../dist/${SRC_DIR}.tar.gz ${SRC_DIR}) + tar czf dist/${SRC_DIR}.tar.gz build/${SRC_DIR} # build lang-specific artifacts diff --git a/pom.xml b/pom.xml index bff60d0..c25add9 100644 --- a/pom.xml +++ b/pom.xml @@ -224,18 +224,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-enforcer-plugin</artifactId> - <executions> - <execution> - <phase>package</phase> - <goals> - <goal>enforce</goal> - </goals> - </execution> - </executions> - </plugin> </plugins> </build> </profile>
