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
var mysh = sh.New(). | |
CommandLog(os.Stdout). | |
CommandLogPrefix("> "). | |
Env(map[string]string{ | |
"CGO_ENABLED": "0", | |
"GOOS": "linux", | |
"GOARCH": "amd64", | |
}). | |
Dir("./target") |
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
var mysh = sh.New(). | |
CommandLog(os.Stdout). | |
CommandLogPrefix("> "). | |
Env(map[string]string{ | |
"CGO_ENABLED": "0", | |
"GOOS": "linux", | |
"GOARCH": "amd64", | |
}). | |
Dir("./target") |
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
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>io.fabric8</groupId> | |
<artifactId>fabric8-project-bom-camel-spring-boot</artifactId> | |
<version>${fabric8.version}</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
<dependency> |
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
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>io.fabric8</groupId> | |
<artifactId>fabric8-project-bom-camel-spring-boot</artifactId> | |
<version>${fabric8.version}</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
<dependency> |
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
diff --git a/maven-plugin/src/main/java/io/sundr/maven/BomConfig.java b/maven-plugin/src/main/java/io/sundr/maven/BomConfig.java | |
index 06c7c3b..4cda60c 100644 | |
--- a/maven-plugin/src/main/java/io/sundr/maven/BomConfig.java | |
+++ b/maven-plugin/src/main/java/io/sundr/maven/BomConfig.java | |
@@ -16,10 +16,13 @@ | |
package io.sundr.maven; | |
+import java.util.ArrayList; | |
import java.util.LinkedList; |
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
diff --git a/src/main/java/io/openshift/launchpad/MissionControl.java b/src/main/java/io/openshift/launchpad/MissionControl.java | |
index eb2412b..5b7b883 100644 | |
--- a/src/main/java/io/openshift/launchpad/MissionControl.java | |
+++ b/src/main/java/io/openshift/launchpad/MissionControl.java | |
@@ -10,6 +10,7 @@ package io.openshift.launchpad; | |
import java.net.ConnectException; | |
import java.net.URI; | |
import java.net.UnknownHostException; | |
+import java.util.Collections; | |
import java.util.List; |
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
{ | |
"AtlasMapping": { | |
"jsonType": "com.mediadriver.atlas.v2.AtlasMapping", | |
"fieldMappings": { | |
"fieldMapping": [ | |
{ | |
"jsonType": "com.mediadriver.atlas.v2.MapFieldMapping", | |
"inputField": { | |
"jsonType": "com.mediadriver.atlas.v2.MappedField", | |
"field": { |
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
app.directive('infiniteScroll', [ | |
'$rootScope', '$window', '$timeout', function($rootScope, $window, $timeout) { | |
return { | |
link: function(scope, elem, attrs) { | |
var checkWhenEnabled, handler, primer, primed, scrollDistance, scrollEnabled; | |
$window = angular.element(Scrollparent(elem.get(0))) | |
scrollDistance = 0; | |
if (attrs.infiniteScrollDistance != null) { | |
scope.$watch(attrs.infiniteScrollDistance, function(value) { |
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
[WARNING] The requested profile "release" could not be activated because it does not exist. | |
[ERROR] Failed to execute goal on project cxf-xjc-javadoc: Could not resolve dependencies for project org.apache.cxf.xjcplugins:cxf-xjc-javadoc:jar:3.1.1.fuse-000010: Failed to collect dependencies at org.eclipse.jdt:core:jar:3.3.0-v_771 -> org.eclipse.core:resources:jar:3.8.1-v20120802-154922 -> org.eclipse.core:filesystem:jar:[1.3.0,2.0.0): No versions available for org.eclipse.core:filesystem:jar:[1.3.0,2.0.0) within specified range -> [Help 1] | |
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal on project cxf-xjc-javadoc: Could not resolve dependencies for project org.apache.cxf.xjcplugins:cxf-xjc-javadoc:jar:3.1.1.fuse-000010: Failed to collect dependencies at org.eclipse.jdt:core:jar:3.3.0-v_771 -> org.eclipse.core:resources:jar:3.8.1-v20120802-154922 -> org.eclipse.core:filesystem:jar:[1.3.0,2.0.0) |
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 examples; | |
import io.vertx.core.AsyncResult; | |
import io.vertx.core.AsyncResultHandler; | |
import io.vertx.core.Handler; | |
import io.vertx.core.Vertx; | |
import io.vertx.core.buffer.Buffer; | |
import io.vertx.core.net.NetClient; | |
import io.vertx.core.net.NetSocket; | |
import org.apache.qpid.proton.Proton; |
NewerOlder