Skip to content

Commit

Permalink
Merge pull request #2 from omegat-org/topic/miurahr/migrate-to-gradle
Browse files Browse the repository at this point in the history
migrate to gradle
  • Loading branch information
miurahr committed Jan 29, 2023
2 parents 47e2869 + eb0023b commit e23dd9e
Show file tree
Hide file tree
Showing 313 changed files with 3,142 additions and 2,833 deletions.
40 changes: 40 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# java objects
*.class
*.jar

# dependency
!junit.jar
!sax2.jar

# Gradle
.gradle
!gradle-wrapper.jar

# Build
out
build
bin

# Eclipse
.project
.classpath
.settings

# Idea
.idea
*.iml
*.iws
*.ipr

# OS
Thumbs.db
.DS_Store

# Maven
target

# Others
*.log
*.swp
*.bak

23 changes: 23 additions & 0 deletions apps/filterbuilder/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
plugins {
id 'application'
}

applicationName = 'filterbuilder'

application {
mainClass = 'org.htmlparser.parserapplications.filterbuilder.FilterBuilder'
}

// We bundle our startup scripts separately, so disable startScripts.
startScripts.enabled = false

tasks.register("installFilterBuilderScripts", Copy) {
from layout.projectDirectory.dir("scripts").asFileTree
into layout.buildDirectory.dir("scripts")
dependsOn(jar)
}
tasks.distZip.dependsOn(installFilterBuilderScripts)

dependencies {
implementation rootProject
}
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit e23dd9e

Please sign in to comment.