Skip to content

Commit

Permalink
116: Use Xtext build utils
Browse files Browse the repository at this point in the history
Task-Url: #116
  • Loading branch information
LorenzoBettini committed Jun 28, 2021
1 parent 9888a57 commit b231f83
Show file tree
Hide file tree
Showing 15 changed files with 171 additions and 571 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: >
xvfb-run
mvn -f javamm.parent/pom.xml
verify -Pide-tests -Pjacoco-report
verify -Pide-tests -Pjacoco
-DrepoToken=$COVERALLS_REPO_TOKEN
-DpullRequest=${{ github.event.pull_request.number }}
-Dsonar.organization=lorenzobettini-github
Expand Down
23 changes: 12 additions & 11 deletions javamm.eclipse.sdk/pom.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<relativePath>../javamm.parent/pom.xml</relativePath>
<groupId>javamm</groupId>
<artifactId>javamm.parent</artifactId>
<version>1.11.0-SNAPSHOT</version>
</parent>
<parent>
<relativePath>../javamm.parent/pom.xml</relativePath>
<groupId>javamm</groupId>
<artifactId>javamm.parent</artifactId>
<version>1.11.0-SNAPSHOT</version>
</parent>

<artifactId>javamm.eclipse.sdk</artifactId>
<packaging>eclipse-plugin</packaging>
<artifactId>javamm.eclipse.sdk</artifactId>
<packaging>eclipse-plugin</packaging>

</project>
2 changes: 1 addition & 1 deletion javamm.examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<plugin>
<groupId>org.eclipse.xtext</groupId>
<artifactId>xtext-maven-plugin</artifactId>
<version>${xtext.version}</version>
<version>${xtext-version}</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion javamm.parent/launches/javamm.parent Jacoco Report.launch
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<stringAttribute key="M2_GOALS" value="clean verify"/>
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
<booleanAttribute key="M2_OFFLINE" value="false"/>
<stringAttribute key="M2_PROFILES" value="jacoco-report"/>
<stringAttribute key="M2_PROFILES" value="jacoco"/>
<listAttribute key="M2_PROPERTIES"/>
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
Expand Down
2 changes: 1 addition & 1 deletion javamm.parent/launches/javamm.parent Sonarqube.launch
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<stringAttribute key="M2_GOALS" value="clean verify sonar:sonar"/>
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
<booleanAttribute key="M2_OFFLINE" value="false"/>
<stringAttribute key="M2_PROFILES" value="jacoco-report ide-tests"/>
<stringAttribute key="M2_PROFILES" value="jacoco ide-tests"/>
<listAttribute key="M2_PROPERTIES"/>
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
Expand Down

0 comments on commit b231f83

Please sign in to comment.