clean old submodules
This commit is contained in:
parent
81f117823b
commit
2e279c25c8
@ -42,7 +42,7 @@ public class QueryBuilder<BO> {
|
||||
final List<Predicate> predicates = new ArrayList<>();
|
||||
for (Property<?> p : criteria.properties()) {
|
||||
if (!p.valueIsNullOrEmpty()) {
|
||||
Mapping mappingAnnotation = (Mapping) ReflectionUtil.getAnnotation(criteria.getClass(), p.getName(), Mapping.class);
|
||||
final Mapping mappingAnnotation = (Mapping) ReflectionUtil.getAnnotation(criteria.getClass(), p.getName(), Mapping.class);
|
||||
final String mapping = mappingAnnotation != null ? mappingAnnotation.boMappingPath() : p.getName();
|
||||
int pos = 0;
|
||||
Join<Object, Object> join = null;
|
||||
|
4
pom.xml
4
pom.xml
@ -11,13 +11,11 @@
|
||||
<name>HSAdmin Parent Project</name>
|
||||
|
||||
<modules>
|
||||
<module>db-migration</module>
|
||||
<module>framework</module>
|
||||
<module>services</module>
|
||||
<module>xmlrpc</module>
|
||||
<module>cust-services</module>
|
||||
<module>web</module>
|
||||
<module>cli</module>
|
||||
<module>db-migration</module>
|
||||
</modules>
|
||||
|
||||
<build>
|
||||
|
@ -1,75 +0,0 @@
|
||||
<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/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>de.hsadmin</groupId>
|
||||
<artifactId>hsadmin-parent</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>services</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>HSAdmin Services</name>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<testFailureIgnore>true</testFailureIgnore>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>de.hsadmin</groupId>
|
||||
<artifactId>framework</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-jpa_2.0_spec</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-ejb_3.0_spec</artifactId>
|
||||
<version>1.0.1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-validation_1.0_spec</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-client</artifactId>
|
||||
<version>5.14.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-openwire-legacy</artifactId>
|
||||
<version>5.14.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlrpc</groupId>
|
||||
<artifactId>xmlrpc-server</artifactId>
|
||||
<version>3.1.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
<version>1.2.17</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
14
xmlrpc/.gitignore
vendored
14
xmlrpc/.gitignore
vendored
@ -1,14 +0,0 @@
|
||||
*.class
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
/target
|
||||
/.settings
|
||||
/.classpath
|
||||
/.project
|
||||
/.distribution
|
@ -1,68 +0,0 @@
|
||||
<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/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>de.hsadmin</groupId>
|
||||
<artifactId>hsadmin-parent</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>xmlrpc-webapp</artifactId>
|
||||
<packaging>war</packaging>
|
||||
<name>HSAdmin XML-RPC Webapp</name>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>de.hsadmin</groupId>
|
||||
<artifactId>framework</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.hsadmin</groupId>
|
||||
<artifactId>persistence</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.hsadmin</groupId>
|
||||
<artifactId>services</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlrpc</groupId>
|
||||
<artifactId>xmlrpc-server</artifactId>
|
||||
<version>3.1.3</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>servlet-api</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<finalName>xmlrpc-webapp</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.openejb.maven</groupId>
|
||||
<artifactId>tomee-maven-plugin</artifactId>
|
||||
<version>1.7.1</version>
|
||||
<configuration>
|
||||
<tomeeVersion>1.7.1</tomeeVersion>
|
||||
<tomeeClassifier>webprofile</tomeeClassifier>
|
||||
<debug>false</debug>
|
||||
<debugPort>8000</debugPort>
|
||||
<config>${project.basedir}/src/test/tomee/conf</config>
|
||||
<libs>
|
||||
<lib>org.postgresql:postgresql:9.4.1209.jre7</lib>
|
||||
</libs>
|
||||
<systemProperties>
|
||||
<javax.net.ssl.keyStore>${project.basedir}/conf/client.ks</javax.net.ssl.keyStore>
|
||||
<javax.net.ssl.keyStorePassword>password</javax.net.ssl.keyStorePassword>
|
||||
<javax.net.ssl.trustStore>${project.basedir}/conf/client.ts</javax.net.ssl.trustStore>
|
||||
<javax.net.ssl.trustStorePassword>password</javax.net.ssl.trustStorePassword>
|
||||
</systemProperties>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<persistence version="2.0"
|
||||
xmlns="http://java.sun.com/xml/ns/persistence"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
|
||||
<persistence-unit name="hsar">
|
||||
<jta-data-source>HsarDataSource</jta-data-source>
|
||||
<class>de.hsadmin.bo.customer.Contact</class>
|
||||
<class>de.hsadmin.bo.customer.Customer</class>
|
||||
<class>de.hsadmin.bo.customer.SEPADirectDebit</class>
|
||||
<class>de.hsadmin.bo.database.Database</class>
|
||||
<class>de.hsadmin.bo.database.DatabaseUser</class>
|
||||
<class>de.hsadmin.bo.database.MySqlDatabase</class>
|
||||
<class>de.hsadmin.bo.database.MySqlUser</class>
|
||||
<class>de.hsadmin.bo.database.PgSqlDatabase</class>
|
||||
<class>de.hsadmin.bo.database.PgSqlUser</class>
|
||||
<class>de.hsadmin.bo.domain.Domain</class>
|
||||
<class>de.hsadmin.bo.domain.DomainOption</class>
|
||||
<class>de.hsadmin.bo.domain.EMailAddress</class>
|
||||
<class>de.hsadmin.bo.pac.BaseComponent</class>
|
||||
<class>de.hsadmin.bo.pac.BasePac</class>
|
||||
<class>de.hsadmin.bo.pac.Component</class>
|
||||
<class>de.hsadmin.bo.pac.EMailAlias</class>
|
||||
<class>de.hsadmin.bo.pac.Hive</class>
|
||||
<class>de.hsadmin.bo.pac.INetAddress</class>
|
||||
<class>de.hsadmin.bo.pac.Pac</class>
|
||||
<class>de.hsadmin.bo.pac.PacComponent</class>
|
||||
<class>de.hsadmin.bo.pac.UnixUser</class>
|
||||
</persistence-unit>
|
||||
</persistence>
|
@ -1,6 +0,0 @@
|
||||
customer=de.hsadmin.service.customer.CustomerRemote
|
||||
contact=de.hsadmin.service.customer.ContactRemote
|
||||
mandat=de.hsadmin.service.customer.SEPADirectDebitRemote
|
||||
hive=de.hsadmin.service.pac.HiveRemote
|
||||
pac=de.hsadmin.service.pac.PacRemote
|
||||
property=de.hsadmin.service.property.PropertyRemote
|
Loading…
Reference in New Issue
Block a user