Skip to content

Commit

Permalink
make the dependencies more fine-granular
Browse files Browse the repository at this point in the history
  • Loading branch information
Dierk Koenig committed Aug 24, 2015
1 parent 46ff61e commit 2d82e93
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 21 deletions.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
buildscript { // make the frege plugin available in our build
repositories {
mavenLocal() // if you have the plugin installed locally, this is enough
mavenCentral()
maven {
url = "https://oss.sonatype.org/content/groups/public"
}
Expand All @@ -9,7 +10,10 @@ buildscript { // make the frege plugin available in our build
// }
}
dependencies {
classpath 'org.frege-lang:frege-gradle-plugin:0.4.2-SNAPSHOT'
classpath 'org.frege-lang:frege-gradle-plugin:0.4.2-SNAPSHOT', {
exclude module:'frege-native-gen'
exclude module:'frege-repl-core'
}
}
}

Expand Down
18 changes: 0 additions & 18 deletions frepl.iml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,5 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" exported="" name="Gradle: org.frege-lang:fregefx:0.2.0-SNAPSHOT" level="project" />
<orderEntry type="library" exported="" name="Gradle: org.frege-lang:frege-repl-core:1.2.1-SNAPSHOT" level="project" />
<orderEntry type="library" exported="" name="Gradle: org.frege-lang:frege:3.22.524-gcc99d7e" level="project" />
<orderEntry type="library" exported="" name="Gradle: org.frege-lang:frege-interpreter-core:1.2.1-SNAPSHOT" level="project" />
<orderEntry type="library" exported="" name="Gradle: org.frege-lang:frege-repl-nativedeps:1.2.1-SNAPSHOT" level="project" />
<orderEntry type="library" exported="" name="Gradle: jline:jline:2.13" level="project" />
<orderEntry type="library" exported="" name="Gradle: org.frege-lang:frege-interpreter-java-support:1.2.1-SNAPSHOT" level="project" />
<orderEntry type="library" exported="" name="Gradle: org.fusesource.jansi:jansi:1.11" level="project" />
<orderEntry type="library" exported="" name="Gradle: org.eclipse.jdt.core.compiler:ecj:4.2.2" level="project" />
<orderEntry type="module-library" exported="">
<library name="Gradle: jfxrt">
<CLASSES>
<root url="jar:///Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/jre/lib/ext/jfxrt.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
</component>
</module>
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Aug 24 18:41:30 CEST 2015
#Mon Aug 24 18:47:47 CEST 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-all.zip

0 comments on commit 2d82e93

Please sign in to comment.