This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.junit.jupiter.api.AfterEach; | |
import org.junit.jupiter.api.BeforeEach; | |
import org.junit.jupiter.api.Test; | |
import java.sql.Connection; | |
import java.sql.DriverManager; | |
import java.sql.PreparedStatement; | |
import java.sql.SQLException; | |
import java.time.OffsetDateTime; | |
import java.time.format.DateTimeFormatter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.jet; | |
import com.hazelcast.core.ManagedContext; | |
import com.hazelcast.function.FunctionEx; | |
import com.hazelcast.jet.Jet; | |
import com.hazelcast.jet.JetInstance; | |
import com.hazelcast.jet.config.JetConfig; | |
import com.hazelcast.jet.config.JobConfig; | |
import com.hazelcast.jet.pipeline.Pipeline; | |
import com.hazelcast.jet.pipeline.Sinks; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
configurations { | |
myConfig | |
} | |
task addToMyConfig { | |
doLast { | |
println "Doing some work" | |
dependencies { | |
myConfig 'log4j:log4j:1.2.17' | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.sql.*; | |
import org.gradle.api.*; | |
import org.gradle.api.artifacts.*; | |
import org.gradle.api.tasks.*; | |
import java.util.*; | |
import java.net.*; | |
import java.io.File; | |
import java.lang.reflect.Method; | |
public abstract class AbstractSqlTask extends DefaultTask { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'java' | |
ext { | |
target = 'org.springframework:spring-context:4.3.9.RELEASE' | |
} | |
configurations { | |
monkeyPatchNonTransitive { transitive = false } | |
monkeyPatchTransitive | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\misc\backup>gradle backup --debug | |
08:56:18.509 [INFO] [org.gradle.internal.nativeintegration.services.NativeServices] Initialized native services in: C:\Users\43807627\.gradle\native | |
08:56:18.619 [DEBUG] [org.gradle.internal.nativeintegration.services.NativeServices] Native-platform posix files is not available. Continuing with fallback. | |
08:56:18.619 [DEBUG] [org.gradle.internal.nativeintegration.filesystem.services.FileSystemServices] Using JDK 7 file service org.gradle.internal.nativeintegration.filesystem.jdk7.WindowsJdk7Symlink | |
08:56:19.289 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Adding IP addresses for network interface Software Loopback Interface 1 | |
08:56:19.289 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Is this a loopback interface? true | |
08:56:19.289 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Is this a multicast interface? true | |
08:56:19.289 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Adding loopback address /12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
ext { | |
grailsVersion = project.grailsVersion | |
} | |
repositories { | |
//mavenLocal() | |
maven { | |
//url "https://repo.grails.org/grails/core" | |
url uri('C:/workspace/offline/build/offline-repo') | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Events({Event.SCENARIO_THEN, Event.SCENARIO_AFTER}) | |
public class AssertCommand { | |
@Parameter(requiredGroup="value") | |
private String sql; | |
@Parameter(name="attribute", requiredGroup="value") | |
private String attributeName; | |
@Parameter(name="expected", required=true) | |
private String expectedString; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<t:parallel> | |
<t:someComponent /> | |
</t:parallel> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] +- org.apache.tapestry:tapestry-core:jar:5.4-beta-22:compile | |
[INFO] | +- org.antlr:antlr-runtime:jar:3.5.2:compile | |
[INFO] | +- commons-codec:commons-codec:jar:1.5:compile | |
[INFO] | +- org.apache.tapestry:tapestry-json:jar:5.4-beta-22:compile | |
[INFO] | \- org.apache.tapestry:tapestry-ioc:jar:5.4-beta-22:compile | |
[INFO] | +- org.apache.tapestry:tapestry5-annotations:jar:5.4-beta-22:compile | |
[INFO] | +- org.apache.tapestry:plastic:jar:5.4-beta-22:compile | |
[INFO] | +- javax.inject:javax.inject:jar:1:compile | |
[INFO] | \- org.apache.tapestry:tapestry-func:jar:5.4-beta-22:compile | |
[INFO] +- com.google.code:sitemapgen4j:jar:1.0.1:compile |
NewerOlder