<dependency>
<groupId>com.google.analytics</groupId>
<artifactId>google-analytics-admin</artifactId>
<version>0.30.0</version>
</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
#!/bin/bash -l | |
function log { | |
echo "LOG $(date +"%Y-%m-%d %H:%M:%S") $1" | |
} | |
function fail { | |
log "$1" |
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
#!/bin/bash | |
cd /tmp && | |
git clone https://github.com/apache/tomee.git && | |
cd tomee || exit 1 | |
## | |
## Grab the same revision so we're all comparing the | |
## exact same code | |
## |
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
META-INF/ | |
META-INF/DEPENDENCIES | |
META-INF/LICENSE | |
META-INF/LICENSE.md | |
META-INF/LICENSE.txt | |
META-INF/MANIFEST.MF | |
META-INF/NOTICE | |
META-INF/NOTICE.md | |
META-INF/mailcap.default | |
META-INF/maven/ |
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
META-INF/MANIFEST.MF | |
META-INF/ | |
META-INF/DEPENDENCIES | |
javaee-api-feature.xml | |
org/ | |
org/apache/ | |
org/apache/openejb/ | |
org/apache/openejb/javaee/ | |
org/apache/openejb/javaee/api/ | |
org/apache/openejb/javaee/api/activator/ |
# | Mapper API | scenario | current | proposed |
---|---|---|---|---|
1 |
Deserialization |
MapperException |
MapperException |
|
2 |
Deserialization |
MapperException |
MapperException |
|
3 |
Deserialization |
MapperException |
MapperException |
# | Jsonb API | scenario | current | proposed |
---|---|---|---|---|
1 |
JsonbCreator |
JsonbException |
JsonbException |
|
2 |
JsonbCreator |
JsonbException |
JsonbException |
|
3 |
Deserialization |
JsonbException |
JsonbException |
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.io.ByteArrayOutputStream; | |
import java.io.IOException; | |
import java.io.OutputStreamWriter; | |
import java.nio.charset.StandardCharsets; | |
public class Foo { | |
public static void main(String[] args) throws IOException { | |
final char c = 'ñ'; | |
final ByteArrayOutputStream baos = new ByteArrayOutputStream(); |
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
2422 apache-tomee-7.0.0-M1-plus 139 3555 6034 ssssssssssssssssssssssss | |
2424 apache-tomee-7.0.0-plus 138 3339 5874 ssssssssssssssssssssssss | |
2429 apache-tomee-7.0.3-plus 139 3434 5929 ssssssssssssssssssssssss | |
2431 apache-tomee-7.0.1-plus 139 3250 5717 ssssssssssssssssssssssss | |
2450 apache-tomee-7.0.2-plus 139 3370 5919 sssssssssssssssssssssssss | |
2451 apache-tomee-7.0.0-M3-plus 139 3419 5944 ssssssssssssssssssssssss | |
2466 apache-tomee-7.0.4-plus 139 3510 6111 sssssssssssssssssssssssss | |
2475 apache-tomee-7.0.0-M2-plus 139 3314 5827 ssssssssssssssssssssssss | |
2526 apache-tomee-7.0.5-plus 139 3691 6263 sssssssssssssssssssssssss | |
2526 apache-tomee-7.1.0-plus 139 3684 6332 ssssssssssssssssssssssssss |
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
#!/bin/bash | |
mvn archetype:generate -DarchetypeGroupId=org.tomitribe \ | |
-DarchetypeArtifactId=tomitribe-crest-archetype \ | |
-DarchetypeVersion=0.19 \ | |
-Dversion=1.0-SNAPSHOT \ | |
-DgroupId=org.example -DartifactId=mycommand && | |
cd mycommand/ && | |
mvn clean install && | |
./target/mycommand ls . |
NewerOlder