Skip to content

Commit

Permalink
Updated maven pom files to fix an error when building the update site
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasfruehwirth committed Jun 8, 2021
1 parent 5f08d58 commit c293001
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 4 deletions.
6 changes: 3 additions & 3 deletions at.ac.tuwien.auto.modelua.uml2opcua.nodeIdsCsv/.classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="output" path="bin"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
1 change: 1 addition & 0 deletions at.ac.tuwien.auto.modelua.uml2opcua.nodeIdsCsv/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target/
6 changes: 6 additions & 0 deletions at.ac.tuwien.auto.modelua.uml2opcua.nodeIdsCsv/.project
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,14 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
</natures>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.5
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: at.ac.tuwien.auto.modelua.uml2opcua.nodeIdsCsv;singleton:=true
Automatic-Module-Name: at.ac.tuwien.auto.modelua.uml2opcua.nodeIdsCsv
Bundle-Version: 0.1.0.qualifier
Bundle-Version: 1.0.0.qualifier
Bundle-ClassPath: .
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
21 changes: 21 additions & 0 deletions at.ac.tuwien.auto.modelua.uml2opcua.nodeIdsCsv/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>at.ac.tuwien.auto.modelua.uml2opcua.nodeIdsCsv</artifactId>
<packaging>eclipse-plugin</packaging>
<parent>
<groupId>at.ac.tuwien.auto.modelua.uml2opcua</groupId>
<artifactId>at.ac.tuwien.auto.modelua.uml2opcua.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho.version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,6 @@
<module>
at.ac.tuwien.auto.modelua.uml2opcua.qvto.developer.feature
</module>
<module>at.ac.tuwien.auto.modelua.uml2opcua.nodeIdsCsv</module>
</modules>
</project>

0 comments on commit c293001

Please sign in to comment.