Skip to content

Commit

Permalink
Added maven dependencies #371
Browse files Browse the repository at this point in the history
- added commons-io 2.7 (originally used io 2.6 but had a vulnerability
  so used 2.7 now to too many issues with upgrade at the moment
- added eclipse-commons 1.0.0 dependency
- added asciidoctor j launcher dependency
  • Loading branch information
de-jcup committed Feb 4, 2022
1 parent a13d803 commit 6764ef2
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion asciidoctor-editor-target/asciidoctor-editor.target
Original file line number Diff line number Diff line change
@@ -1,8 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><?pde version="3.8"?><target name="asciidoctor-editor">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?>
<target name="asciidoctor-editor">
<locations>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.sdk.ide" version="0.0.0"/>
<repository location="https://download.eclipse.org/releases/2021-12/"/>
</location>

<location includeDependencyDepth="infinite" includeDependencyScope="compile" includeSource="true" label="asp launcher" missingManifest="generate" type="Maven">
<dependencies>
<!-- https://mvnrepository.com/artifact/de.jcup.asp/asp-server-asciidoctorj-launcher -->
<dependency>
<groupId>de.jcup.asp</groupId>
<artifactId>asp-server-asciidoctorj-launcher</artifactId>
<version>1.3.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/de.jcup.eclipse.commons/eclipse-commons -->
<dependency>
<groupId>de.jcup.eclipse.commons</groupId>
<artifactId>eclipse-commons</artifactId>
<version>1.0.0</version>
</dependency>
<!-- Remark: Original lib depencency was commons-io 2.6.0 which had a vulnerability.
To have at least this fixed and being still compatible 2.7.0 is defined here.
Later there should be the newest library tried out (when all works fine with maven)
-->
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
</dependency>

</dependencies>

</location>
</locations>
</target>

0 comments on commit 6764ef2

Please sign in to comment.