Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
masofcon committed Feb 3, 2020
1 parent 42ed07a commit 3b8667a
Show file tree
Hide file tree
Showing 48 changed files with 1,411 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#---------------------
# Text files
#---------------------
*.txt text
*.java text
MANIFEST.MF text
package.info text
*.target text
*.exsd text
p2.inf text
.project text
.classpath text
*.properties text
*.prefs text
*.launch text
*.p2f text
*.ecore text
*.genmodel text
*.xcore text
*.xmi text
*.xml text
*.xsd text
*.htm text
*.html text
*.css text
*.jsp text
*.js text
*.bat text eol=crlf
*.cmd text eol=crlf
*.sh text eol=lf
#---------------------
# Binary files
#---------------------
*.class binary
*.jar binary
*.jks binary
*.exe binary
*.dll binary
*.so binary
*.png binary
*.jpg binary
*.jpeg binary
*.ico binary
*.gif binary
17 changes: 17 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Tycho Build Example CI

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Maven
run: mvn clean verify -Dtycho.localArtifacts=ignore -B -V
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,19 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

#Eclipse project files
.metadata/
.recommenders/
.JETEmitters/

#IntelliJ IDEA project files and directories
*.iml
*.ipr
*.iws
.idea/
idea-project/

#Build targets
bin/
target/
11 changes: 11 additions & 0 deletions bom/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>bom</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
2 changes: 2 additions & 0 deletions bom/.settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
Loading

0 comments on commit 3b8667a

Please sign in to comment.