diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 13:19:49 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 10:09:11 +0100 |
commit | 610d0ccf29f72757ec516f11f720405a8d2b695c (patch) | |
tree | bba1467283ee6da1a751510d1b0f1c1c44d7af92 /docs/pom.xml | |
parent | 4d884aac75b99f92c201b14fd4b4879a0fabc597 (diff) | |
download | aspectj-610d0ccf29f72757ec516f11f720405a8d2b695c.tar.gz aspectj-610d0ccf29f72757ec516f11f720405a8d2b695c.zip |
Remove obsolete DocBook build config in favour of Asciidoctor
Along with the Ant and Maven build configs, downloads of
- DocBook DTD,
- DocBook XSL,
- FOP,
- Batik,
- Saxon
also become obsolete.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'docs/pom.xml')
-rw-r--r-- | docs/pom.xml | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/docs/pom.xml b/docs/pom.xml index c7cea87e5..1f76f17c6 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -163,95 +163,6 @@ </plugins> </build> </profile> - <profile> - <id>create-docs-LEGACY</id> - <activation> - <property> - <name>createDocs_LEGACY</name> - <value>true</value> - </property> - </activation> - - <build> - <resources> - <resource> - <directory>src/main/resources</directory> - <filtering>true</filtering> - <includes> - <include>**/local.properties</include> - </includes> - </resource> - </resources> - - <pluginManagement> - <plugins> - <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> - <plugin> - <groupId>org.eclipse.m2e</groupId> - <artifactId>lifecycle-mapping</artifactId> - <version>1.0.0</version> - <configuration> - <lifecycleMappingMetadata> - <pluginExecutions> - <pluginExecution> - <pluginExecutionFilter> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-antrun-plugin</artifactId> - <versionRange>[1.7,)</versionRange> - <goals> - <goal>run</goal> - </goals> - </pluginExecutionFilter> - <action> - <ignore></ignore> - </action> - </pluginExecution> - </pluginExecutions> - </lifecycleMappingMetadata> - </configuration> - </plugin> - </plugins> - </pluginManagement> - - <plugins> - <plugin> - <artifactId>maven-antrun-plugin</artifactId> - <version>3.0.0</version> - <executions> - <execution> - <id>make-docs</id> - <phase>process-resources</phase> - <configuration> - <target> - <copy - file="${project.build.outputDirectory}/local.properties" - toFile="../build/local.properties" - overwrite="true" - /> - <ant antfile="build.xml"> - <target name="dist"/> - </ant> - </target> - </configuration> - <goals> - <goal>run</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - - </build> - - <dependencies> - <dependency> - <!-- All modules referencing files inside 'lib' need this dependency --> - <groupId>org.aspectj</groupId> - <artifactId>lib</artifactId> - </dependency> - </dependencies> - - </profile> </profiles> </project> |