Skip to content

Commit bc5a2d1

Browse files
Merge commit 'ff6228059db721f3d8a42ea0d27920937139da00' into develop
2 parents 59a790e + ff62280 commit bc5a2d1

3 files changed

Lines changed: 57 additions & 32 deletions

File tree

.github/workflows/ci-workflow.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build-develop
2+
on:
3+
push:
4+
branches:
5+
- github-ci
6+
7+
jobs:
8+
build:
9+
name: Compile
10+
strategy:
11+
matrix:
12+
java_version: [8, 9, 10]
13+
os: [ubuntu-latest, windows-latest, macOS-latest]
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v1
17+
- name: Set up JDK 1.8
18+
uses: actions/setup-java@v1
19+
with:
20+
java-version: 1.8
21+
- name: Build with Maven
22+
run: mvn package --file pom.xml
23+
- run: echo The time was ${{ steps.hello.outputs.time }}
24+
25+

interfaces-ext/pom.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -465,22 +465,22 @@
465465
</execution>
466466
</executions>
467467
</plugin>-->
468-
<plugin>
469-
<groupId>org.codehaus.mojo</groupId>
470-
<artifactId>xmlbeans-maven-plugin</artifactId>
471-
<version>2.3.3</version>
472-
<executions>
473-
<execution>
474-
<goals>
475-
<goal>xmlbeans</goal>
476-
</goals>
477-
</execution>
478-
</executions>
479-
<inherited>true</inherited>
480-
<configuration>
481-
<schemaDirectory>src/main/xsd</schemaDirectory>
482-
</configuration>
483-
</plugin>
468+
<!-- <plugin>-->
469+
<!-- <groupId>org.codehaus.mojo</groupId>-->
470+
<!-- <artifactId>xmlbeans-maven-plugin</artifactId>-->
471+
<!-- <version>2.3.3</version>-->
472+
<!-- <executions>-->
473+
<!-- <execution>-->
474+
<!-- <goals>-->
475+
<!-- <goal>xmlbeans</goal>-->
476+
<!-- </goals>-->
477+
<!-- </execution>-->
478+
<!-- </executions>-->
479+
<!-- <inherited>true</inherited>-->
480+
<!-- <configuration>-->
481+
<!-- <schemaDirectory>src/main/xsd</schemaDirectory>-->
482+
<!-- </configuration>-->
483+
<!-- </plugin>-->
484484

485485
<plugin>
486486
<groupId>org.apache.tomcat.maven</groupId>

interfaces/pom.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -316,22 +316,22 @@
316316
<build>
317317
<finalName>dl-learner</finalName>
318318
<plugins>
319-
<plugin>
320-
<groupId>org.codehaus.mojo</groupId>
321-
<artifactId>xmlbeans-maven-plugin</artifactId>
322-
<version>2.3.3</version>
323-
<executions>
324-
<execution>
325-
<goals>
326-
<goal>xmlbeans</goal>
327-
</goals>
328-
</execution>
329-
</executions>
330-
<inherited>true</inherited>
331-
<configuration>
332-
<schemaDirectory>src/main/xsd</schemaDirectory>
333-
</configuration>
334-
</plugin>
319+
<!-- <plugin>-->
320+
<!-- <groupId>org.codehaus.mojo</groupId>-->
321+
<!-- <artifactId>xmlbeans-maven-plugin</artifactId>-->
322+
<!-- <version>2.3.3</version>-->
323+
<!-- <executions>-->
324+
<!-- <execution>-->
325+
<!-- <goals>-->
326+
<!-- <goal>xmlbeans</goal>-->
327+
<!-- </goals>-->
328+
<!-- </execution>-->
329+
<!-- </executions>-->
330+
<!-- <inherited>true</inherited>-->
331+
<!-- <configuration>-->
332+
<!-- <schemaDirectory>src/main/xsd</schemaDirectory>-->
333+
<!-- </configuration>-->
334+
<!-- </plugin>-->
335335
<plugin>
336336
<groupId>org.apache.tomcat.maven</groupId>
337337
<artifactId>tomcat7-maven-plugin</artifactId>

0 commit comments

Comments
 (0)