Skip to content

Commit

Permalink
Adding gradle wrapper
Browse files Browse the repository at this point in the history
fix for IDEA build, see #1
  • Loading branch information
hypery2k committed Oct 21, 2015
1 parent e1d373d commit 2de8fb8
Show file tree
Hide file tree
Showing 24 changed files with 945 additions and 215 deletions.
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@
# build folders
com.galenframework.parent/bin/*
com.galenframework.parent/target/*
com.galenframework.parent/com.galenframework/build/*
com.galenframework.parent/com.galenframework.ide/bin/*
com.galenframework.parent/com.galenframework.ide/build/
com.galenframework.parent/com.galenframework.ide/target/*
com.galenframework.parent/com.galenframework.idea/bin/*
com.galenframework.parent/com.galenframework.idea/build/*
com.galenframework.parent/com.galenframework.idea/target/*
com.galenframework.parent/com.galenframework.tests/bin/*
com.galenframework.parent/com.galenframework.tests/target/*
Expand All @@ -24,7 +27,8 @@ com.galenframework.parent/com.galenframework.web/target/*
com.galenframework.parent/com.galenframework/bin/*
com.galenframework.parent/com.galenframework/target/*
samples/.metadata/*

com.galenframework.parent/com.galenframework.target/.classpath
com.galenframework.parent/.gradle/*

# Gen folders
com.galenframework.parent/com.galenframework/model/generated/*
Expand All @@ -42,5 +46,3 @@ com.galenframework.parent/com.galenframework.web/src-gen/*
com.galenframework.parent/com.galenframework.web/xtend-gen/*
com.galenframework.parent/com.galenframework/src-gen/*
com.galenframework.parent/com.galenframework/xtend-gen/*

com.galenframework.parent/com.galenframework.target/.classpath
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ before_script:
- echo $HOME

jdk:
- oraclejdk7
- oraclejdk8

script:
- cd com.galenframework.parent
- mvn clean verify
- ./gradlew test
50 changes: 23 additions & 27 deletions com.galenframework.parent/com.galenframework.ide/.project
Original file line number Diff line number Diff line change
@@ -1,45 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<filteredResources>
<filter>
<id>1445442315238</id>
<name/>
<type>10</type>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-false-false-target</arguments>
</matcher>
</filter>
</filteredResources>
<name>com.galenframework.ide</name>
<comment></comment>
<projects>
</projects>
<comment/>
<projects/>
<natures>
<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
</natures>
<buildSpec>
<buildCommand>
<name>org.eclipse.xtext.ui.shared.xtextBuilder</name>
<arguments>
</arguments>
<arguments/>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
<arguments/>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
<arguments/>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
<arguments/>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
</natures>
<filteredResources>
<filter>
<id>1445442315238</id>
<name></name>
<type>10</type>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-false-false-target</arguments>
</matcher>
</filter>
</filteredResources>
<linkedResources/>
</projectDescription>
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#
#Wed Oct 21 17:59:02 CEST 2015
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.source=1.6
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
org.eclipse.jdt.core.compiler.compliance=1.6
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#Wed Oct 21 17:59:02 CEST 2015
outlet.DEFAULT_OUTPUT.generatedAnnotationComment=
outlet.DEFAULT_OUTPUT.generateGeneratedAnnotation=false
BuilderConfiguration.is_project_specific=true
outlet.DEFAULT_OUTPUT.generateSuppressWarnings=true
outlet.DEFAULT_OUTPUT.installDslAsPrimarySource=false
outlet.DEFAULT_OUTPUT.userOutputPerSourceFolder=true
outlet.DEFAULT_OUTPUT.sourceFolder.src-gen.directory=xtend-gen
outlet.DEFAULT_OUTPUT.hideLocalSyntheticVariables=true
is_project_specific=true
eclipse.preferences.version=1
outlet.DEFAULT_OUTPUT.includeDateInGenerated=false
outlet.DEFAULT_OUTPUT.sourceFolder.src.directory=xtend-gen
Loading

0 comments on commit 2de8fb8

Please sign in to comment.