Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View rmannibucau's full-sized avatar

Romain Manni-Bucau rmannibucau

View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<!--
JDays1 tomee executable war
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fish.payara.examples</groupId>
<artifactId>JDays2016</artifactId>
<?xml version="1.0" encoding="UTF-8"?>
<!--
1. mv src/main/webapp/* in src/main/resources/META-INF/resources/*
2. comment in web.xml the datasource if you don't have MySQL set up
3. mvn clean package && java -jar target/JDays2016-1.0-SNAPSHOT.jar --as-war
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fish.payara.examples</groupId>
public class SimpleDeploymentExtension implements LoadableExtension {
@Override
public void register(final ExtensionBuilder extensionBuilder) {
extensionBuilder.service(DeploymentScenarioGenerator.class, SimpleDeploymentScenarioGenerator.class);
}
public static class SimpleDeploymentScenarioGenerator implements DeploymentScenarioGenerator {
private static final Method VALIDATE;
private static final Method GENERATE;
static {
Using CATALINA_BASE: /home/rmannibucau/dev/Other/ticket-monster/demo/apache-tomee-webprofile-2.0.0-SNAPSHOT
Using CATALINA_HOME: /home/rmannibucau/dev/Other/ticket-monster/demo/apache-tomee-webprofile-2.0.0-SNAPSHOT
Using CATALINA_TMPDIR: /home/rmannibucau/dev/Other/ticket-monster/demo/apache-tomee-webprofile-2.0.0-SNAPSHOT/temp
Using JRE_HOME: /home/rmannibucau/softwares/jdk1.7.0_67
Using CLASSPATH: /home/rmannibucau/dev/Other/ticket-monster/demo/apache-tomee-webprofile-2.0.0-SNAPSHOT/bin/bootstrap.jar:/home/rmannibucau/dev/Other/ticket-monster/demo/apache-tomee-webprofile-2.0.0-SNAPSHOT/bin/tomcat-juli.jar
INFOS - The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
INFOS - Initializing ProtocolHandler ["http-nio-8080"]
INFOS - Using a shared selector for servlet write/read
INFOS - Initializing ProtocolHandler ["ajp-nio-8009"]
INFOS - Using a
Index: container/openejb-core/src/main/java/org/apache/openejb/assembler/classic/Assembler.java
===================================================================
--- container/openejb-core/src/main/java/org/apache/openejb/assembler/classic/Assembler.java (revision 1569653)
+++ container/openejb-core/src/main/java/org/apache/openejb/assembler/classic/Assembler.java (working copy)
@@ -16,7 +16,6 @@
*/
package org.apache.openejb.assembler.classic;
-import org.apache.catalina.LifecycleException;
import org.apache.geronimo.connector.GeronimoBootstrapContext;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
Index: openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/kernel/exps/CollectionParam.java
===================================================================
--- openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/kernel/exps/CollectionParam.java (revision 1535760)
+++ openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/kernel/exps/CollectionParam.java (working copy)
@@ -18,6 +18,7 @@
*/
package org.apache.openjpa.jdbc.kernel.exps;
+import java.lang.reflect.Array;
import java.util.Arrays;
I propose to open another thread about Mark
Romain Manni-Bucau
Twitter: @rmannibucau
Blog: http://rmannibucau.wordpress.com/
LinkedIn: http://fr.linkedin.com/in/rmannibucau
Github: https://github.com/rmannibucau
2013/10/23 Mark Struberg <struberg@yahoo.de>:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.superbiz</groupId>
<artifactId>demoit</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>