Found 70 repositories(showing 30)
NitorCreations
Tomcat 8 compatible runner for exec-wars built using Tomcat 7 Maven plugin with enhanced server.xml support
jenkinsci
Inlined to Jenkins core in https://github.com/jenkinsci/jenkins/pull/6706
davidtinker
Grails plugin to make Grails war files executable (java -jar myapp.war) by embedding Jetty
実行可能な war をパッケージングしてくれる maven プロジェクト
executable war with embedded jetty(version: 8.x )
jkutner
Allows execution of commands from a Warbler WAR file
stigkj
An attempt to create a framework for building an executable WAR, based on code from Jenkins, an amazing CI server by Kohsuke Kawaguchi
claymccoy
A project that demonstrates how to create an executable war with embedded Tomcat and Maven.
ralmodiel
Sample maven pom.xml and launcher for a jersey project packaged into an executable war file.
adinauer
executable war containing a jetty server and a Spring MVC hello world application built with gradle
is-already-taken
Example Maven project showing how to make Java WAR files executable like JARs using custom class loader
jeanfric
This project aims at providing a relatively easy way for developers to make WAR files self-runnable.
runepeter
No description available
A sample application using the executable-war project.
Kaizaro
No description available
battlefantasy
Roblox ware Executor. Transforming Ideas into Reality. At -Ware, we develop software experiences that push the boundaries of what's typical.
Roadli0405
No description available
chmeee
Launch exploits for wargame levels
Bibosiandre
JAVA-SQLite-Executor
No description available
Planet-Source-Code
No description available
Buildsoftwaresphere
import org.gradle.internal.os.OperatingSystem apply plugin: 'java' apply plugin: 'maven' apply plugin: 'war' group = 'com.yourCompany.hcp-project' version = '0.0.1-SNAPSHOT' description = """""" sourceCompatibility = 1.7 targetCompatibility = 1.7 project.buildDir = 'target' project.webAppDirName = 'WebContent' project.ext { localServer = "${buildDir}" + File.separator + "server" sdk = "${buildDir}" + File.separator +"sdk" neo = { -> if(OperatingSystem.current().isWindows()) return "${sdk}" + File.separator + "tools" + File.separator + "neo.bat" if(OperatingSystem.current().isLinux()) return "${sdk}" + File.separator + "tools" + File.separator + "neo.sh" } httpPort = "8083" waitUrl = "http://localhost:${httpPort}/" + war.archiveName.replace(".war", "/") account = "abcdef" application = "abc" host = "hana.ondemand.com" //Shoudl go into local .gradle/gradle.properties which should be excluded fom SCM (e.g. Git) password = "secret" user = "p12345678" } repositories { maven { url "http://repo.maven.apache.org/maven2" } } dependencies { compile group: 'commons-io', name: 'commons-io', version:'2.4' compile group: 'org.apache.maven.plugins', name: 'maven-enforcer-plugin', version:'1.0.1' compile group: 'org.apache.olingo', name: 'olingo-odata2-api', version:'2.0.6' compile group: 'org.apache.olingo', name: 'olingo-odata2-core', version:'2.0.6' compile group: 'javax.servlet', name: 'servlet-api', version:'3.0-alpha-1' compile group: 'org.apache.cxf', name: 'cxf-rt-frontend-jaxrs', version:'2.7.5' compile group: 'org.apache.olingo', name: 'olingo-odata2-jpa-processor-api', version:'2.0.6' compile group: 'org.apache.olingo', name: 'olingo-odata2-jpa-processor-core', version:'2.0.6' compile group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.7.1' compile group: 'org.eclipse.persistence', name: 'eclipselink', version:'2.6.1-RC1' testCompile group: 'junit', name: 'junit', version:'4.12' testCompile group: 'com.sap.cloud', name: 'neo-javaee6-wp-maven-plugin', version:'2.78.13' testCompile group: 'org.mockito', name: 'mockito-core', version:'2.0.31-beta' providedCompile 'com.sap.cloud:neo-javaee6-wp-sdk:2.78.13@zip' providedCompile group: 'com.sap.cloud', name: 'neo-javaee6-wp-api', version:'2.78.13' } task installSdk(type:Copy){ description 'Task will install Neo SDK' def outputDir = file(project.sdk) def a = file(findJar('neo-javaee6-wp-sdk')) from zipTree(a) into(outputDir) } task installServer(type: Exec){ description 'Task will install local server and the SDK in case it is missing' doFirst{ if(!file(project.sdk).exists()) tasks.installSdk.execute() } commandLine neo(), 'install-local', '--location', localServer, '--http-port', httpPort } task startServer(type: Exec){ description 'Task will start local server' commandLine neo(), 'start-local', '--location', localServer, '--wait-url', waitUrl } task deploy(type:Exec, dependsOn: war){ description 'Task will deploy war to local server' commandLine neo(), 'deploy-local', '--location', localServer, '--source', war.archivePath } task cloudDeploy(type:Exec, dependsOn: war){ description "Task will deploy war in hana Cloud Platform Account" commandLine neo(), 'deploy', '--account', account, '--application', application, '--host', host, '--password', password, '--user', user, '--source', war.archivePath } def findJar(prefix) { configurations.providedCompile.files.find { it.name.contains(prefix) } }
HariniUPinnawalage
No description available
prudhvi953
A maven plugin for creating a zip file with your war, embedded server and scripts to run it.
ExecutiveAV
No description available
dpratt
A maven utility that augments an existing WAR artifact to make it directly executable.
vast-engineering
A maven utility that augments an existing WAR artifact to make it directly executable.
azzaminfobot
No description available
Compiled version of GL_warp2Avi
fverswijver
Small code for a wrapper around the Sitecore MVC ExecuteRenderer