Skip to content

Commit

Permalink
git and gradle parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
EdoFro committed Dec 24, 2021
1 parent 8b7ce96 commit 5859814
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ gradle-app.setting

# ignore some folders
ignoredByGitHub/
delete/

8 changes: 4 additions & 4 deletions Tutorial-o-Matic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ targetCompatibility='1.8'

libsDirName = "${rootDir}/lib"
//clean.doFirst { delete "${rootDir}/lib" } // para eliminar todas las .jar
clean.doFirst { delete "${rootDir}/lib/Tutorial-o-Matic.jar" } //para eliminar sólo una de las .jar y que no me borrara markedj ni jsoup
clean.doFirst { delete "${rootDir}/lib/Tutorial-o-Matic.jar" } //para eliminar sólo una de las .jar y que no me borrara markedj ni jsoup

repositories {
mavenCentral()
Expand All @@ -14,16 +14,16 @@ repositories {
"C:/Program Files/Freeplane/core/org.freeplane.core/lib",
"C:/Program Files/Freeplane/plugins/org.freeplane.plugin.script/lib",
// "C:/Program Files/Freeplane/plugins/org.freeplane.plugin.markdown/lib", // para incluir markedj.jar
"${rootDir}/lib" //ahí puse markedj y jsoup
"${rootDir}/lib" //ahí puse markedj y jsoup
]


// Así para cuando Freeplane está en Portable Apps
// Así para cuando Freeplane está en Portable Apps
// dirs: [
// "C:/PortableApps/FreeplanePortable/App/Freeplane",
// "C:/PortableApps/FreeplanePortable/App/Freeplane/core/org.freeplane.core/lib",
// "C:/PortableApps/FreeplanePortable/App/Freeplane/plugins/org.freeplane.plugin.script/lib",
// "${rootDir}/lib" //así lo usé en wikdshellext, porque ahí puse WikdShell.jar
// "${rootDir}/lib" //así lo usé en wikdshellext, porque ahí puse WikdShell.jar
// ]
}

Expand Down

0 comments on commit 5859814

Please sign in to comment.