BAEL-1734 move packages from libraries to libraries-data
This commit is contained in:
parent
7140229ca0
commit
f9ddc38a39
@ -3,3 +3,7 @@
|
|||||||
- [Introduction to ORMLite](http://www.baeldung.com/ormlite)
|
- [Introduction to ORMLite](http://www.baeldung.com/ormlite)
|
||||||
- [Introduction To Kryo](http://www.baeldung.com/kryo)
|
- [Introduction To Kryo](http://www.baeldung.com/kryo)
|
||||||
- [Introduction to KafkaStreams in Java](http://www.baeldung.com/java-kafka-streams)
|
- [Introduction to KafkaStreams in Java](http://www.baeldung.com/java-kafka-streams)
|
||||||
|
- [Guide to Java Data Objects](http://www.baeldung.com/jdo)
|
||||||
|
- [Intro to JDO Queries 2/2](http://www.baeldung.com/jdo-queries)
|
||||||
|
- [Introduction to HikariCP](http://www.baeldung.com/hikaricp)
|
||||||
|
- [Introduction to JCache](http://www.baeldung.com/jcache)
|
||||||
|
1
libraries-data/log4j.properties
Normal file
1
libraries-data/log4j.properties
Normal file
@ -0,0 +1 @@
|
|||||||
|
log4j.rootLogger=INFO, stdout
|
26
libraries-data/myPersistence.xml
Normal file
26
libraries-data/myPersistence.xml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?><root>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</root>
|
@ -85,6 +85,55 @@
|
|||||||
<artifactId>gson</artifactId>
|
<artifactId>gson</artifactId>
|
||||||
<version>${gson.version}</version>
|
<version>${gson.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- Hikari CP -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.zaxxer</groupId>
|
||||||
|
<artifactId>HikariCP</artifactId>
|
||||||
|
<version>2.7.2</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<!-- JDO -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.datanucleus</groupId>
|
||||||
|
<artifactId>javax.jdo</artifactId>
|
||||||
|
<version>3.2.0-m7</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.datanucleus</groupId>
|
||||||
|
<artifactId>datanucleus-core</artifactId>
|
||||||
|
<version>5.1.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.datanucleus</groupId>
|
||||||
|
<artifactId>datanucleus-api-jdo</artifactId>
|
||||||
|
<version>5.1.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.datanucleus</groupId>
|
||||||
|
<artifactId>datanucleus-rdbms</artifactId>
|
||||||
|
<version>5.1.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.datanucleus</groupId>
|
||||||
|
<artifactId>datanucleus-maven-plugin</artifactId>
|
||||||
|
<version>5.0.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.datanucleus</groupId>
|
||||||
|
<artifactId>datanucleus-xml</artifactId>
|
||||||
|
<version>5.0.0-release</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.datanucleus</groupId>
|
||||||
|
<artifactId>datanucleus-jdo-query</artifactId>
|
||||||
|
<version>5.0.4</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Jcache -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.cache</groupId>
|
||||||
|
<artifactId>cache-api</artifactId>
|
||||||
|
<version>${cache.version}</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
@ -184,6 +233,29 @@
|
|||||||
</plugin>
|
</plugin>
|
||||||
<!-- /Reladomo-->
|
<!-- /Reladomo-->
|
||||||
|
|
||||||
|
<!-- JDO Plugin -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.datanucleus</groupId>
|
||||||
|
<artifactId>datanucleus-maven-plugin</artifactId>
|
||||||
|
<version>5.0.2</version>
|
||||||
|
<configuration>
|
||||||
|
<api>JDO</api>
|
||||||
|
<props>${basedir}/datanucleus.properties</props>
|
||||||
|
<log4jConfiguration>${basedir}/log4j.properties</log4jConfiguration>
|
||||||
|
<verbose>true</verbose>
|
||||||
|
<fork>false</fork>
|
||||||
|
<!-- Solve windows line too long error -->
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>process-classes</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>enhance</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
@ -203,5 +275,6 @@
|
|||||||
<kafka.version>1.0.0</kafka.version>
|
<kafka.version>1.0.0</kafka.version>
|
||||||
<ignite.version>2.3.0</ignite.version>
|
<ignite.version>2.3.0</ignite.version>
|
||||||
<gson.version>2.8.2</gson.version>
|
<gson.version>2.8.2</gson.version>
|
||||||
|
<cache.version>1.0.0</cache.version>
|
||||||
</properties>
|
</properties>
|
||||||
</project>
|
</project>
|
@ -0,0 +1,4 @@
|
|||||||
|
javax.jdo.PersistenceManagerFactoryClass=org.datanucleus.api.jdo.JDOPersistenceManagerFactory
|
||||||
|
javax.jdo.option.ConnectionURL= xml:file:myfile-ds.xml
|
||||||
|
datanucleus.xml.indentSize=6
|
||||||
|
datanucleus.schema.autoCreateAll=true
|
@ -17,9 +17,7 @@
|
|||||||
- [Introduction to Quartz](http://www.baeldung.com/quartz)
|
- [Introduction to Quartz](http://www.baeldung.com/quartz)
|
||||||
- [How to Warm Up the JVM](http://www.baeldung.com/java-jvm-warmup)
|
- [How to Warm Up the JVM](http://www.baeldung.com/java-jvm-warmup)
|
||||||
- [Apache Commons Collections SetUtils](http://www.baeldung.com/apache-commons-setutils)
|
- [Apache Commons Collections SetUtils](http://www.baeldung.com/apache-commons-setutils)
|
||||||
- [Guide to Java Data Objects](http://www.baeldung.com/jdo)
|
|
||||||
- [Software Transactional Memory in Java Using Multiverse](http://www.baeldung.com/java-multiverse-stm)
|
- [Software Transactional Memory in Java Using Multiverse](http://www.baeldung.com/java-multiverse-stm)
|
||||||
- [Introduction to HikariCP](http://www.baeldung.com/hikaricp)
|
|
||||||
- [Serenity BDD with Spring and JBehave](http://www.baeldung.com/serenity-spring-jbehave)
|
- [Serenity BDD with Spring and JBehave](http://www.baeldung.com/serenity-spring-jbehave)
|
||||||
- [Locality-Sensitive Hashing in Java Using Java-LSH](http://www.baeldung.com/locality-sensitive-hashing)
|
- [Locality-Sensitive Hashing in Java Using Java-LSH](http://www.baeldung.com/locality-sensitive-hashing)
|
||||||
- [Apache Commons Collections OrderedMap](http://www.baeldung.com/apache-commons-ordered-map)
|
- [Apache Commons Collections OrderedMap](http://www.baeldung.com/apache-commons-ordered-map)
|
||||||
@ -47,7 +45,6 @@
|
|||||||
- [Guide to JDeferred](http://www.baeldung.com/jdeferred)
|
- [Guide to JDeferred](http://www.baeldung.com/jdeferred)
|
||||||
- [Integrating Retrofit with RxJava](http://www.baeldung.com/retrofit-rxjava)
|
- [Integrating Retrofit with RxJava](http://www.baeldung.com/retrofit-rxjava)
|
||||||
- [Introduction to MBassador](http://www.baeldung.com/mbassador)
|
- [Introduction to MBassador](http://www.baeldung.com/mbassador)
|
||||||
- [Introduction to JCache](http://www.baeldung.com/jcache)
|
|
||||||
- [Introduction to Retrofit](http://www.baeldung.com/retrofit)
|
- [Introduction to Retrofit](http://www.baeldung.com/retrofit)
|
||||||
- [Using Pairs in Java](http://www.baeldung.com/java-pairs)
|
- [Using Pairs in Java](http://www.baeldung.com/java-pairs)
|
||||||
- [Apache Commons Collections Bag](http://www.baeldung.com/apache-commons-bag)
|
- [Apache Commons Collections Bag](http://www.baeldung.com/apache-commons-bag)
|
||||||
@ -56,7 +53,6 @@
|
|||||||
- [Introduction To Docx4J](http://www.baeldung.com/docx4j)
|
- [Introduction To Docx4J](http://www.baeldung.com/docx4j)
|
||||||
- [Introduction to StreamEx](http://www.baeldung.com/streamex)
|
- [Introduction to StreamEx](http://www.baeldung.com/streamex)
|
||||||
- [Introduction to BouncyCastle with Java](http://www.baeldung.com/java-bouncy-castle)
|
- [Introduction to BouncyCastle with Java](http://www.baeldung.com/java-bouncy-castle)
|
||||||
- [Intro to JDO Queries 2/2](http://www.baeldung.com/jdo-queries)
|
|
||||||
- [Guide to google-http-client](http://www.baeldung.com/google-http-client)
|
- [Guide to google-http-client](http://www.baeldung.com/google-http-client)
|
||||||
- [Interact with Google Sheets from Java](http://www.baeldung.com/google-sheets-java-client)
|
- [Interact with Google Sheets from Java](http://www.baeldung.com/google-sheets-java-client)
|
||||||
- [Programatically Create, Configure, and Run a Tomcat Server] (http://www.baeldung.com/tomcat-programmatic-setup)
|
- [Programatically Create, Configure, and Run a Tomcat Server] (http://www.baeldung.com/tomcat-programmatic-setup)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user