Skip to content

Commit

Permalink
chore: move omtWebsite in gradle.property
Browse files Browse the repository at this point in the history
and fix typos

Signed-off-by: Hiroshi Miura <[email protected]>
  • Loading branch information
miurahr committed Dec 29, 2024
1 parent 255078b commit 336611f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ tasks.named('updateDaemonJvm') {
}

def omtFlavor = omtVersion.beta.empty ? 'standard' : 'latest'
def omtWebsite = 'https://omegat.org'

version = omtVersion.version + getUpdateSuffix(omtVersion.update)

Expand Down Expand Up @@ -1193,7 +1192,7 @@ tasks.register('testAcceptance', Test) {
classpath = sourceSets.testAcceptance.runtimeClasspath
systemProperties = System.properties
systemProperty 'java.util.logging.config.file', "${rootDir}/config/test/logger.properties"
dependsOn firstStepsEn
dependsOn tasks.findByName('firstStepsEn')
dependsOn ':aligner:jar'
}

Expand Down Expand Up @@ -1312,5 +1311,5 @@ tasks.withType(JavaExec).configureEach {
maxHeapSize = findProperty('runMaxHeapSize')
// Ask modules to be up-to-date before run task executed
dependsOn subprojects.collect {it.tasks.withType(Jar)}
dependsOn tasks.withName('firstSteps')
dependsOn tasks.findByName('firstSteps')
}
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
shortDescription = 'The free translation memory tool'
distDescription = 'OmegaT is a free and open source multiplatform Computer Assisted Translation tool with fuzzy matching, translation memory, keyword search, glossaries, and translation leveraging into updated projects.'
distAppVendor = 'The OmegaT project'
omtWebsite = 'https://omegat.org'

0 comments on commit 336611f

Please sign in to comment.