diff options
author | Henri Sara <hesara@vaadin.com> | 2016-09-08 15:16:13 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2016-09-08 12:39:07 +0000 |
commit | 05095f52b3e967aa2cb488b1896a0a2b075e8667 (patch) | |
tree | 1ff6114d454ee42d0e3e972e8061df669e80a853 /all/pom.xml | |
parent | 222908a9372885cc05bc3cb04374aea5aba66139 (diff) | |
download | vaadin-framework-05095f52b3e967aa2cb488b1896a0a2b075e8667.tar.gz vaadin-framework-05095f52b3e967aa2cb488b1896a0a2b075e8667.zip |
Remove unused commit author fetching from build.
Change-Id: I36faa94382258d5df40c7f200e5c24805896f100
Diffstat (limited to 'all/pom.xml')
-rw-r--r-- | all/pom.xml | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/all/pom.xml b/all/pom.xml index 4adf25b7e7..5468a378a9 100644 --- a/all/pom.xml +++ b/all/pom.xml @@ -13,7 +13,6 @@ <properties> <relnotes.tickets.file>${project.build.directory}/generated-resources/releasenotes/release-notes-tickets.html</relnotes.tickets.file> - <relnotes.authors.file>${project.build.directory}/generated-resources/releasenotes/release-notes-authors.html</relnotes.authors.file> <webcontent.dir>${project.build.outputDirectory}/WebContent/</webcontent.dir> <maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format> </properties> @@ -114,8 +113,6 @@ <target> <loadfile property="release-notes-tickets" srcFile="${relnotes.tickets.file}" failonerror="false" /> - <loadfile property="release-notes-authors" srcFile="${relnotes.authors.file}" - failonerror="false" /> <copy todir="${webcontent.dir}"> <fileset dir="src/main/templates/"> <patternset> @@ -131,7 +128,6 @@ <token key="gwt-version" value="${vaadin.gwt.version}" /> <token key="builddate" value="${maven.build.timestamp}" /> <token key="release-notes-tickets" value="${release-notes-tickets}" /> - <token key="release-notes-authors" value="${release-notes-authors}" /> </replacetokens> </filterchain> </copy> @@ -250,26 +246,6 @@ <outputFile>${relnotes.tickets.file}</outputFile> </configuration> </execution> - <execution> - <id>fetch-release-notes-authors</id> - <phase>process-classes</phase> - <goals> - <goal>exec</goal> - </goals> - <configuration> - <classpathScope>compile</classpathScope> - <executable>${java.home}/bin/java</executable> - <arguments> - <argument>-Dvaadin.version=${project.version}</argument> - <argument>-classpath</argument> - <classpath /> - - <argument>com.vaadin.buildhelpers.FetchReleaseNotesAuthors - </argument> - </arguments> - <outputFile>${relnotes.authors.file}</outputFile> - </configuration> - </execution> </executions> </plugin> |