First Commit - Source Code from Reply

This commit is contained in:
vincenzofariello
2024-05-13 12:54:14 +02:00
parent 73e32a5020
commit a15aee1f08
11184 changed files with 1065913 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#Wed Apr 29 10:56:50 CEST 2009
clsCnt=0
eclipse.preferences.version=1
locCnt=0
pkgCnt=0
sTime=Wednesday, April 29, 2009 10\:56\:50 AM CEST
srcCnt=1

View File

@@ -0,0 +1,8 @@
#Wed Apr 29 10:56:36 CEST 2009
activeProfiles=
eclipse.preferences.version=1
fullBuildGoals=process-test-resources
includeModules=false
resolveWorkspaceProjects=false
resourceFilterGoals=process-resources resources\:testResources
version=1

View File

@@ -0,0 +1,24 @@
HOW TO
COME INSTALLARE UN ARTIFACT ALL'INTERNO DEL REPOSITORY DI DBCGO
1.copiare il vostro artifact all'interno della cartella:
FE\mnpdev\dbcgo\dbcgoEar\lib
2.spostarsi nella cartella
FE\mnpdev\dbcgo\dbcgoEar\
3.lanciare lo script JAR-INSTALL.cmd da linea di comando con i seguenti parametri:
a. nome del file copiato nella cartella lib (compreso di estensione)
b. groupId
c. artifactId
d. version
ESEMPIO:
JAR-INSTALL.cmd mnp-ejbclient.jar mnp-ejbclient mnp-ejbclient 5.1
i parametri groupId,artifactId,version potete trovarli riferendovi al pom.xml,
dove sono presenti i parametri per il jar che volete aggiornare, ricordatevi dopo
di mettere un numero di versione superiore e cmìomunque diverso da quelli presenti.
Ricordarsi anche di modificare il pom.xml di riferimento con il nuovo numero di versione
altrimenti non usa il nuovo jar.
IMPORTANTE: ricordarsi di fare l'add da CVS!!!!!!!!!!

View File

@@ -0,0 +1,8 @@
echo "nome file:" %1%
echo "groupId:" %2%
echo "artifactId:" %3%
echo "version:" %4%
echo "packaging: jar"
cd maven-2.0.9/bin
mvn install:install-file -Dfile=../../lib/%1 -DgroupId=%2 -DartifactId=%3 -Dversion=%4 -Dpackaging=jar
echo "RICORDARSI DI FARE L'ADD DA CVS!!!!!!!"

View File

@@ -0,0 +1,15 @@
#L'idea è di modificare le properies variabili in questo file
#e non nel file di build (build.xml)
#home di Java SDK
sdk.home=/usr/java14
#home di weblogic server
weblogic.home=/bea/bea81sp3/weblogic81
#home del progetto,
#se si fa il build dall'alberatura CVS di Ambra non è necessario modificare la proprietà
project.home=.

View File

@@ -0,0 +1,13 @@
@set ANT_HOME=../apache-ant-1.9.2
@set JAVA_HOME=C:/Program Files/Java/jdk1.6.0_45
@set PATH=%ANT_HOME%/bin;%JAVA_HOME%/bin
@set REPOLOCAL=..\..\
@set M2=
@set M2_HOME=
echo %REPOLOCAL%
echo %ANT_HOME%
call ant -buildfile build.xml %1
pause

View File

@@ -0,0 +1,11 @@
#!/bin/ksh
set -a
ANT_HOME=../apache-ant-1.6.2
JAVA_HOME=/usr/java14
PATH=$ANT_HOME/bin:$JAVA_HOME/bin:$PATH
REPOLOCAL=$PWD/../
echo $REPOLOCAL
echo "starting ant"
ant -version
ant -buildfile build.xml $1
echo "ant end"

View File

@@ -0,0 +1,517 @@
<project name="mnp" default="all" basedir=".">
<condition property="isWindowsOs">
<os family="windows"/>
</condition>
<condition property="isWindowsXpOs">
<os family="windows" />
</condition>
<condition property="isUnix">
<os family="unix"/>
</condition>
<condition property="isAixOs">
<os family="unix" name="aix"/>
</condition>
<condition property="build.prop.file.path" value="winxp">
<isset property="isWindowsXpOs"/>
</condition>
<condition property="build.prop.file.path" value="aix">
<isset property="isAixOs"/>
</condition>
<property environment="env" />
<property name="build.prop.file" value="${build.prop.file.path}/build_${user.name}.properties"/>
<property file="${build.prop.file}"/>
<property name="build.path" value="${project.home}/target"/>
<property name="building.path" value="${build.path}/building"/>
<property name="dbcgo.web.path" value="../${project.home}/dbcgo"/>
<property name="dbcgo.ejb.path" value="../${project.home}/dbcgom"/>
<property name="dbcgo.ear.path" value="${project.home}"/>
<property name="dbcgo.web.classes.path" value="${building.path}/web-classes"/>
<property name="dbcgo.ejb.classes.path" value="${building.path}/ejb-classes"/>
<property name="dbcgo.ear.classes.path" value="${building.path}/ear-classes"/>
<property name="dbcgo.web.compile.path" value="${building.path}/web"/>
<property name="dbcgo.ejb.compile.path" value="${building.path}/ejb"/>
<property name="dbcgo.ear.compile.path" value="${building.path}/ear"/>
<property name="dbcgo.ejc.compile.path" value="${building.path}/ejc"/>
<property name="dbcgo.web.src.path" value="${dbcgo.web.path}/src"/>
<property name="dbcgo.ejb.src.path" value="${dbcgo.ejb.path}/src"/>
<property name="dbcgo.ear.src.path" value="${dbcgo.ear.path}/src"/>
<property name="dbcgo.web.res.path" value="${dbcgo.web.path}/WebRoot"/>
<property name="dbcgo.ejb.res.path" value="${dbcgo.ejb.path}/res"/>
<property name="dbcgo.ear.res.path" value="${dbcgo.ear.path}/res"/>
<property name="dbcgo.web.lib.path" value="${dbcgo.web.res.path}/WEB-INF/lib"/>
<!-- <property name="dbcgo.ejb.lib.path" value="${dbcgo.ejb.res.path}/WEB-INF/lib"/> -->
<property name="dbcgo.ear.lib.path" value="${dbcgo.ear.res.path}/APP-INF/lib"/>
<!-- Configurazione per le classi generate da hibernate HIBERNATE -->
<property name="dbcgo.model.src.path" value="../${project.home}/dbcgom/src"/>
<property name="dbcgo.hibernateDAO.destdir.path" value="${dbcgo.model.src.path}/it/valueteam/dbcgo/hb/dao"/>
<property name="dbcgo.hibernatePojoXml.destdir.path" value="${dbcgo.model.src.path}/it/valueteam/dbcgo/hb/dto"/>
<property name="dbcgo.hibernate.gen.configFile" value="${project.home}/hibernate/hibernateGen.cfg.xml"/>
<property name="dbcgo.hibernate.gen.revengeFile" value="${project.home}/hibernate/hibernate.reveng.xml"/>
<property name="dbcgo.hibernate.gen.revengeFileFK" value="${project.home}/hibernate/hibernateFK.reveng.xml"/>
<property name="dbcgo.hibernate.gen.lib.path" value="${project.home}/hibernate/genLib"/>
<!-- define a mapper for Home to DAO -->
<mapper id="DAOMapper" type="glob" from="*Home.java" to="*DAO.java"/>
<patternset id="dbcgo.hibernate.hbm.xml">
<include name="**/*.hbm.xml"/>
</patternset>
<!-- LIB per la compilazione degli oggetti di hibernate -->
<filelist id="hibernate.compile.files.classpath" dir="${dbcgo.ear.lib.path}">
<file name="hibernate-c3p0-0.9.0.jar"/>
<file name="hibernate-cglib-2.1.3.jar"/>
<file name="hibernate-ehcache-1.2.jar"/>
<file name="hibernate3.jar"/>
<file name="hibernate-jgroups-2.2.8.jar"/>
<file name="hibernate-antlr-2.7.6rc1.jar"></file>
<file name="logging.jar"></file>
<file name="log4j-1.2.7.jar"></file>
<file name="hibernate-dom4j-1.5.2.jar"/>
<file name="hibernate-asm.jar"/>
<file name="hibernate-asm-attrs.jar"/>
<file name="hibernate-commons-collections-2.1.1.jar"/>
<file name="commons-net-1.3.0.jar"/>
<file name="commons-logging.jar"/>
</filelist>
<!-- LIB per la generazione degli oggetti di hibernate -->
<filelist id="hibernate.gen.files.classpath" dir="${dbcgo.hibernate.gen.lib.path}" >
<file name="hibernate-tools-DBCGOcustom.jar"/>
<file name="classes12.jar"/>
<!-- <file name="commons-fileupload.jar"/> -->
<file name="freemarker.jar"/>
<file name="jtidy-r8-20060801.jar"/>
</filelist>
<path id="hibernate.gen.all.claspath">
<filelist refid="hibernate.gen.files.classpath"/>
<filelist refid="hibernate.compile.files.classpath"/>
<pathelement location="${weblogic.home}/server/lib/weblogic.jar"/>
<!--<filelist refid="weblogic.jar"/>-->
</path >
<!-- TARGET PER LA CREAZIONE DEI DTO E FILE XML DI MAPPING-->
<target name="hibernateGenDto">
<echo>
Creating Hibernate DTO Objects and XML Mapping
${dbcgo.hibernateDAO.destdir.path}
-------------
</echo>
<!-- DEFINIZIONE TASK GENERAZIONE XML E POJO -->
<taskdef name="hibernatetoolGenPojoXml"
classname="org.hibernate.tool.ant.HibernateToolTask"
classpathref="hibernate.gen.all.claspath"
/>
<!-- DEFINIZIONE TASK GENERAZIONE XML E POJO PER LE TABELLE CON FK-->
<taskdef name="hibernatetoolFKGenPojoXml"
classname="org.hibernate.tool.ant.HibernateToolTask"
classpathref="hibernate.gen.all.claspath"
/>
<!-- IMPLEMENTAZIONE TASK GENERAZIONE XML E POJO-->
<hibernatetoolGenPojoXml >
<jdbcconfiguration
configurationfile="${dbcgo.hibernate.gen.configFile}"
revengfile="${dbcgo.hibernate.gen.revengeFile}"
detectmanytomany="false"
detectoptimisticlock="true"/>
<hbm2hbmxml destdir="${dbcgo.hibernatePojoXml.destdir.path}"/>
<hbm2java destdir="${dbcgo.hibernatePojoXml.destdir.path}" />
</hibernatetoolGenPojoXml>
<!-- IMPLEMENTAZIONE TASK GENERAZIONE XML E POJO LE TABELLE CON FK -->
<hibernatetoolFKGenPojoXml >
<jdbcconfiguration
configurationfile="${dbcgo.hibernate.gen.configFile}"
revengfile="${dbcgo.hibernate.gen.revengeFileFK}"
detectmanytomany="false"
detectoptimisticlock="true"/>
<hbm2hbmxml destdir="${dbcgo.hibernatePojoXml.destdir.path}"/>
<hbm2java destdir="${dbcgo.hibernatePojoXml.destdir.path}"/>
</hibernatetoolFKGenPojoXml>
</target>
<!-- FINE TARGET PER LA CREAZIONE DEI DTO E FILE XML DI MAPPING-->
<!-- INIZIO DEI TARGET PER LA GESTIONE DELLA CREAZIONE DEI DAO-->
<target name="hibernateDAO">
<echo>
Creating Hibernate DAO Objects -
ATTENZIONE VERRANNO GENERATI I DAO STANDARD ELIMINADO COSI' LE PERSONALIZZAZIONI
-------------
</echo>
<!-- DEFINIZIONE TASK GENERAZIONE DAO -->
<taskdef name="hibernatetoolGenDAO"
classname="org.hibernate.tool.ant.HibernateToolTask"
classpathref="hibernate.gen.all.claspath"
/>
<!-- DEFINIZIONE TASK GENERAZIONE DAO PER LE TABELLE CON FK-->
<taskdef name="hibernatetoolFKGenDAO"
classname="org.hibernate.tool.ant.HibernateToolTask"
classpathref="hibernate.gen.all.claspath"
/>
<!-- IMPLEMENTAZIONE TASK GENERAZIONE DAO-->
<hibernatetoolGenDAO >
<jdbcconfiguration
configurationfile="${dbcgo.hibernate.gen.configFile}"
revengfile="${dbcgo.hibernate.gen.revengeFile}"
detectmanytomany="false"
detectoptimisticlock="true"/>
<hbm2dao destdir="${dbcgo.hibernateDAO.destdir.path}"/>
</hibernatetoolGenDAO>
<!-- IMPLEMENTAZIONE TASK GENERAZIONE DAO LE TABELLE CON FK -->
<hibernatetoolFKGenDAO >
<jdbcconfiguration
configurationfile="${dbcgo.hibernate.gen.configFile}"
revengfile="${dbcgo.hibernate.gen.revengeFileFK}"
detectmanytomany="false"
detectoptimisticlock="true"/>
<hbm2dao destdir="${dbcgo.hibernateDAO.destdir.path}"/>
</hibernatetoolFKGenDAO>
</target>
<target name="hibernateGenDao" depends="hibernateDAO">
<echo>
Renaming Hibernate DAO
-------------
</echo>
<taskdef name="move"
classname="org.apache.tools.ant.taskdefs.Move"
classpathref="hibernate.gen.all.claspath"/>
<move todir="${dbcgo.hibernateDAO.destdir.path}">
<!-- the files to move -->
<fileset dir="${dbcgo.hibernateDAO.destdir.path}">
<include name="**/*Home.java" />
</fileset>
<mapper refid="DAOMapper" />
</move>
</target>
<!-- FINE DEI TARGET PER LA GESTIONE DELLA CREAZIONE DEI DAO-->
<!-- FINE HIBERNATE -->
<patternset id="dbcgo.ejb.client.pattern">
<include name="**/SyncService*.class"/>
<include name="**/SyncService*.xml"/>
<exclude name="**/SyncServiceBean.class"/>
</patternset>
<path id="dbcgo.ejb.classpath">
<!-- User JAR -->
<pathelement location="${dbcgo.ear.path}/res/process-executor.jar" />
<!-- Common JAR -->
<fileset dir="${dbcgo.ear.lib.path}" />
<!-- Weblogic JAR -->
<pathelement location="${weblogic.home}/server/lib/weblogic.jar"/>
<!-- Java compiler tools.jar -->
<pathelement location="${sdk.home}/lib/tools.jar"/>
</path>
<path id="dbcgo.web.classpath">
<!-- User JAR -->
<fileset dir="${dbcgo.web.lib.path}" />
<!-- Common JAR -->
<fileset dir="${dbcgo.ear.lib.path}" />
<!-- Weblogic JAR -->
<pathelement location="${weblogic.home}/server/lib/weblogic.jar"/>
<!-- Java compiler tools.jar -->
<pathelement location="${sdk.home}/lib/tools.jar"/>
</path>
<path id="dbcgo.ear.classpath">
<!-- Nothing -->
</path>
<condition property="mvnOperation" value="./mvnOperation.sh ${dbcgo.web.path}/script /maven-2.0.9/bin ">
<isset property="isAixOs"/>
</condition>
<condition property="mvnOperation" value="/c mvnOperation.cmd ${dbcgo.web.path}/script \maven-2.0.9\bin ">
<isset property="isWindowsXpOs"/>
</condition>
<condition property="exec" value="ksh">
<isset property="isAixOs"/>
</condition>
<condition property="exec" value="cmd">
<isset property="isWindowsXpOs"/>
</condition>
<target name = "install-DBCGO">
<delete dir="${dbcgo.web.path}/WebRoot/WEB-INF/lib"/>
<exec dir = "${project.home}" executable = "${exec}">
<arg value = "${mvnOperation}"/>
</exec>
</target>
<target name="init" depends="install-DBCGO" >
<tstamp prefix="start"/>
<echo>
** Build started at: ${start.DSTAMP} ${start.TSTAMP}
sdk.home = ${sdk.home}
weblogic.home = ${weblogic.home}
project.home = ${project.home}
build.prop.file = ${build.prop.file}
ant.home = ${ant.home}
** Creating folders..
</echo>
<delete dir="${building.path}"/>
<mkdir dir="${building.path}"/>
<mkdir dir="${dbcgo.web.classes.path}"/>
<mkdir dir="${dbcgo.web.compile.path}"/>
<mkdir dir="${dbcgo.web.compile.path}/WEB-INF/classes"/>
<mkdir dir="${dbcgo.ejb.classes.path}"/>
<mkdir dir="${dbcgo.ejb.compile.path}"/>
<mkdir dir="${dbcgo.ejb.compile.path}/WEB-INF/classes"/>
<mkdir dir="${dbcgo.ear.classes.path}"/>
<mkdir dir="${dbcgo.ear.compile.path}"/>
<mkdir dir="${dbcgo.ear.compile.path}/APP-INF/classes"/>
<mkdir dir="${dbcgo.ear.compile.path}/APP-INF/lib"/>
<mkdir dir="${dbcgo.ejc.compile.path}"/>
</target>
<target name="compile.dbcgo.ejb">
<echo>** Compiling dbcgo.ejb..</echo>
<javac srcdir="${dbcgo.ejb.src.path}" destdir="${dbcgo.ejb.classes.path}" debug="on" deprecation="off" failonerror="true">
<classpath refid="dbcgo.ejb.classpath"/>
</javac>
</target>
<target name="compile.dbcgo.web" depends="jar.dbcgo.ejb">
<echo>** Compiling dbcgo.web..</echo>
<javac srcdir="${dbcgo.web.src.path}" destdir="${dbcgo.web.classes.path}" debug="on" deprecation="off" failonerror="true">
<classpath refid="dbcgo.web.classpath"/>
<classpath>
<pathelement path="${building.path}/dbcgo-ejbmodule.jar"/>
</classpath>
</javac>
</target>
<target name="compile" depends="compile.dbcgo.ejb, compile.dbcgo.web"/>
<target name="jar.dbcgo.ejb">
<echo>** Making jar dbcgo.ejb..</echo>
<copy todir="${dbcgo.ejb.compile.path}">
<fileset dir="${dbcgo.ejb.res.path}" />
<fileset dir="${dbcgo.ejb.classes.path}" />
<fileset dir="${dbcgo.model.src.path}">
<patternset refid="dbcgo.hibernate.hbm.xml"/>
</fileset>
</copy>
<jar destfile="${building.path}/dbcgo-ejbmodule-src.jar" manifest="${dbcgo.ejb.res.path}/META-INF/EJB_Manifest.mf">
<fileset dir="${dbcgo.ejb.compile.path}" />
</jar>
<echo>
${dbcgo.ear.path};
${dbcgo.ear.lib.path};
${weblogic.home}/server/lib/weblogic.jar;
${sdk.home}/lib/tools.jar
</echo>
<java fork="true" failonerror="true" classname="weblogic.ejbc">
<classpath refid="dbcgo.ejb.classpath"/>
<arg value="${building.path}/dbcgo-ejbmodule-src.jar"/>
<arg value="${building.path}/dbcgo-ejbmodule.jar"/>
</java>
</target>
<target name="jar.dbcgo.ejc" depends="jar.dbcgo.ejb">
<echo>
** Making jar dbcgo.ejc..
</echo>
<unzip src="${building.path}/dbcgo-ejbmodule.jar" dest="${dbcgo.ejc.compile.path}">
<patternset>
<include name="**/SyncService*.class"/>
<include name="**/SyncService*.xml"/>
<include name="**/DonorReqDTO*.class"/>
<include name="**/RecipientReqDTO*.class"/>
<include name="**/DonorVirtReqDTO*.class"/>
<include name="**/DonorVirtTCReqDTO*.class"/>
<include name="**/RecipientVirtReqDTO*.class"/>
<include name="**/RecipientVirtM2MReqDto*.class"/>
<include name="**/RecipientVirtM2MTcReqDTO*.class"/>
<include name="**/RecipientVirtTCReqDTO*.class"/>
<include name="**/PortingReqDTO*.class"/>
<include name="**/DonorTCReqDTO*.class"/>
<include name="**/RecipientTCReqDTO*.class"/>
<include name="**/MnpDonatingForCatastaleDbcgoDTO*.class"/>
<exclude name="**/SyncServiceBean.class"/>
</patternset>
</unzip>
<jar destfile="${building.path}/dbcgo-ejbclient.jar" manifest="${dbcgo.ejb.res.path}/META-INF/EJB_Manifest.mf">
<fileset dir="${dbcgo.ejc.compile.path}" />
</jar>
</target>
<target name="jar.dbcgo.ejc.common" depends="jar.dbcgo.ejb">
<echo>
** Making jar dbcgo.ejc.common.
</echo>
<unzip src="${building.path}/dbcgo-ejbmodule.jar" dest="${dbcgo.ejc.compile.path}">
<patternset>
<include name="**/*.class"/>
<include name="**/*.xml"/>
<exclude name="**/SyncServiceBean.class"/>
<exclude name="**/ProcessServerBean.class"/>
<exclude name="**/PriorityServiceBean.class"/>
</patternset>
</unzip>
<jar destfile="${building.path}/dbcgo-ejb-common.jar" manifest="${dbcgo.ejb.res.path}/META-INF/EJB_Manifest.mf">
<fileset dir="${dbcgo.ejc.compile.path}" />
</jar>
</target>
<target name="jar.dbcgo.war">
<echo>
** Making jar dbcgo.war..
</echo>
<echo>dbcgo.web.res.path= ${dbcgo.web.res.path}</echo>
<echo>dbcgo.ejb.compile.path= ${dbcgo.ejb.compile.path}</echo>
<delete dir="${dbcgo.web.res.path}/WEB-INF/classes/it/valueteam/dbcgo/action"/>
<delete dir="${dbcgo.web.res.path}/WEB-INF/classes/it/valueteam/dbcgo/actionform"/>
<delete dir="${dbcgo.web.res.path}/WEB-INF/classes/it/valueteam/dbcgo/common"/>
<delete dir="${dbcgo.web.res.path}/WEB-INF/classes/it/valueteam/dbcgo/database"/>
<delete dir="${dbcgo.web.res.path}/WEB-INF/classes/it/valueteam/dbcgo/web"/>
<!--
<copy todir="${dbcgo.web.compile.path}">
<fileset dir="${dbcgo.web.res.path}" />
<classes dir="${dbcgo.web.classes.path}" />
</copy>
-->
<war destfile="${building.path}/dbcgo-gui.war" manifest="${dbcgo.web.res.path}/META-INF/WEB_MANIFEST.MF" webxml="${dbcgo.web.res.path}/WEB-INF/web.xml">
<fileset dir="${dbcgo.web.res.path}" />
<classes dir="${dbcgo.web.classes.path}" />
</war>
</target>
<target name="jar.dbcgo.ear" depends="jar.dbcgo.ejb, jar.dbcgo.ejc,jar.dbcgo.ejc.common, jar.dbcgo.war">
<echo>
** Making jar dbcgo.ear..
</echo>
<copy todir="${dbcgo.ear.compile.path}">
<fileset dir="${dbcgo.ear.res.path}" />
</copy>
<copy todir="${dbcgo.ear.compile.path}" file="${building.path}/dbcgo-ejbmodule.jar"/>
<copy todir="${dbcgo.ear.compile.path}" file="${building.path}/dbcgo-gui.war"/>
<copy todir="${dbcgo.ear.compile.path}" file="${dbcgo.ear.res.path}/process-executor.jar"/>
<!-- INSERIRE LE LIB -->
<ear destfile="${building.path}/dbcgo.ear" appxml="${dbcgo.ear.res.path}/META-INF/application.xml">
<fileset dir="${dbcgo.ear.compile.path}"/>
</ear>
</target>
<target name="cleanup">
<echo>
** Cleaning up..
</echo>
<mkdir dir="${build.path}/deploy_${start.DSTAMP}_${start.TSTAMP}" />
<copy todir="${build.path}/deploy_${start.DSTAMP}_${start.TSTAMP}" file="${building.path}/dbcgo.ear"/>
<copy todir="${build.path}/deploy_${start.DSTAMP}_${start.TSTAMP}" file="${building.path}/dbcgo-ejbclient.jar"/>
<copy todir="${build.path}/deploy_${start.DSTAMP}_${start.TSTAMP}" file="${building.path}/dbcgo-ejb-common.jar"/>
<delete dir="${building.path}" />
</target>
<target name="ftp">
<ftp server="svi-babele"
remotedir="/dbarea/beamnp/linkedDomain/mnp4/applications/"
userid="beamnp"
password="beamnp"
binary="yes">
<fileset file="file://mnp.ear"/>
</ftp>
</target>
<target name="speaker" if="isWindowsOs" unless="fun.done" >
<sound>
<success source="${env.ANT_HOME}/sounds/all_systems_functioning.wav"/>
<fail source="${env.ANT_HOME}/sounds/system_alert.wav" loops="2"/>
</sound>
<property name="fun.done" value="true"/>
</target>
<target name="noclean" depends="init, compile, jar.dbcgo.ear"/>
<target name="all" depends="init, compile, jar.dbcgo.ear, cleanup"/>
<!-- <target name="full" depends="init, compile, jar.dbcgo.ear, cleanup, deploy, speaker"/> -->
<target name="full" depends="init, compile, jar.dbcgo.ear, cleanup, speaker"/>
<!--
<target name="buildTest" depends="init, compile, jar.dbcgo.ear, cleanup, undeploy, deploy, speaker"/>
<target name="deploy">
<wldeploy action="deploy"
source="${build.path}/deploy_${start.DSTAMP}_${start.TSTAMP}/dbcgo.ear"
name="dbcgo"
user="weblogic"
password="weblogic"
adminurl="t3://localhost:7001"
remote="false"
debug="true"
verbose="true"
targets="mnpServer"/>
</target>
<target name="undeploy">
<wldeploy action="undeploy"
name="dbcgo"
user="weblogic"
password="weblogic"
adminurl="t3://localhost:7001"
remote="false"
debug="true"
verbose="true"
targets="mnpServer"/>
</target>
<taskdef name="wldeploy" classname="weblogic.ant.taskdefs.management.WLDeploy"
classpath="${weblogic.home}/server/lib/weblogic.jar"/> -->
</project>

View File

@@ -0,0 +1,7 @@
@set ANT_HOME=../apache-ant-1.6.2
@set JAVA_HOME=C:/bea813/jdk142_04
@set PATH=%ANT_HOME%/bin;%JAVA_HOME%/bin
ant -buildfile build.xml hibernateGenDao

View File

@@ -0,0 +1,6 @@
@set ANT_HOME=../apache-ant-1.6.2
@set JAVA_HOME=C:/bea/bea81sp3/jdk142_04
@set PATH=%ANT_HOME%/bin;%JAVA_HOME%/bin
ant -buildfile build.xml hibernateGenDto

View File

@@ -0,0 +1,12 @@
@set ANT_HOME=../apache-ant-1.9.2
@set JAVA_HOME=C:/Java/jdk1.6.0_45
@set PATH=%ANT_HOME%/bin;%JAVA_HOME%/bin
@set REPOLOCAL=..\..\
@set M2=
@set M2_HOME=
echo %REPOLOCAL%
echo %ANT_HOME%
ant -buildfile build.xml %1

View File

@@ -0,0 +1,32 @@
package it.valueteam.dbcgo.hb.dto;
//${pojo.getPackageDeclaration()}
// Generated ${date} by Hibernate Tools ${version} - Carmelo A.
<#assign classbody>
<#include "PojoTypeDeclaration.ftl"/> {
<#if !pojo.isInterface()>
<#include "PojoFields.ftl"/>
<#include "PojoConstructors.ftl"/>
<#include "PojoPropertyAccessors.ftl"/>
<#include "PojoToString.ftl"/>
<#include "PojoEqualsHashcode.ftl"/>
<#else>
<#include "PojoInterfacePropertyAccessors.ftl"/>
</#if>
<#include "PojoExtraClassCode.ftl"/>
}
</#assign>
${pojo.generateImports()}
${classbody}

View File

@@ -0,0 +1,323 @@
package it.valueteam.dbcgo.hb.dao;
// Generated ${date} by Hibernate Tools Customizzato per MNP da C.A. ${version}
<#assign classbody>
<#assign declarationName = pojo.importType(pojo.getDeclarationName())>/**
* DAO object for domain model class ${declarationName}.
* @see ${pojo.getQualifiedDeclarationName()}
* @author C.A.
*/
<#if ejb3>
@${pojo.importType("javax.ejb.Stateless")}
</#if>
import org.hibernate.Query;
import org.hibernate.criterion.Criterion;
import org.hibernate.Criteria;
import java.util.*;
import it.valueteam.dbcgo.hb.dto.*;
public class ${declarationName}DAO extends BaseHibernateDAO{
protected static final ${pojo.importType("org.apache.commons.logging.Log")} log = ${pojo.importType("org.apache.commons.logging.LogFactory")}.getLog(${pojo.getDeclarationName()}DAO.class);
<#if ejb3>
@${pojo.importType("javax.persistence.PersistenceContext")} private ${pojo.importType("javax.persistence.EntityManager")} entityManager;
public void persist(${declarationName} transientInstance) {
log.debug("persisting ${declarationName} instance");
try {
entityManager.persist(transientInstance);
log.debug("persist successful");
}
catch (RuntimeException re) {
log.error("persist failed", re);
throw re;
}
}
public void remove(${declarationName} persistentInstance) {
log.debug("removing ${declarationName} instance");
try {
entityManager.remove(persistentInstance);
log.debug("remove successful");
}
catch (RuntimeException re) {
log.error("remove failed", re);
throw re;
}
}
public ${declarationName} merge(${declarationName} detachedInstance) {
log.debug("merging ${declarationName} instance");
try {
${declarationName} result = entityManager.merge(detachedInstance);
log.debug("merge successful");
return result;
}
catch (RuntimeException re) {
log.error("merge failed", re);
throw re;
}
}
<#if clazz.identifierProperty?has_content>
public ${declarationName} findById( ${pojo.getJavaTypeName(clazz.identifierProperty, jdk5)} id) {
log.debug("getting ${declarationName} instance with id: " + id);
try {
${declarationName} instance = entityManager.find(${pojo.getDeclarationName()}.class, id);
log.debug("get successful");
return instance;
}
catch (RuntimeException re) {
log.error("get failed", re);
throw re;
}
}
</#if>
<#else>
public void save(${declarationName} transientInstance) {
log.debug("saving ${declarationName} instance");
try {
getSession().save(transientInstance);
log.debug("save successful");
}
catch (RuntimeException re) {
log.error("save failed", re);
throw re;
}
}
public ${pojo.importType("java.util.List")} findByProperty(String propertyName, Object value) {
log.debug("finding ${declarationName} instance with property: " + propertyName
+ ", value: " + value);
try {
String queryString = "select model from ${declarationName} model where model."
+ propertyName + "= ?";
Query queryObject = getSession().createQuery(queryString);
queryObject.setParameter(0, value);
return queryObject.list();
} catch (RuntimeException re) {
log.error("find by property name failed", re);
throw re;
}
finally {
closeSession();
}
}
public ${pojo.importType("java.util.List")} findAll() {
log.debug("finding all ${declarationName} ");
try {
String queryString = " from ${declarationName}";
Query queryObject = getSession().createQuery(queryString);
return queryObject.list();
} catch (RuntimeException re) {
log.error("find all name failed", re);
throw re;
}finally {
closeSession();
}
}
public void attachDirty(${declarationName} instance) {
log.debug("attaching dirty ${declarationName} instance");
try {
getSession().saveOrUpdate(instance);
log.debug("attach successful");
}
catch (RuntimeException re) {
log.error("attach failed", re);
throw re;
}
}
public void attachClean(${declarationName} instance) {
log.debug("attaching clean ${declarationName} instance");
try {
getSession().lock(instance, ${pojo.importType("org.hibernate.LockMode")}.NONE);
log.debug("attach successful");
}
catch (RuntimeException re) {
log.error("attach failed", re);
throw re;
}
}
public void delete(${declarationName} persistentInstance) {
log.debug("deleting ${declarationName} instance");
try {
getSession().delete(persistentInstance);
log.debug("delete successful");
}
catch (RuntimeException re) {
log.error("delete failed", re);
throw re;
}
}
public ${declarationName} merge(${declarationName} detachedInstance) {
log.debug("merging ${declarationName} instance");
try {
${declarationName} result = (${declarationName}) getSession().merge(detachedInstance);
log.debug("merge successful");
return result;
}
catch (RuntimeException re) {
log.error("merge failed", re);
throw re;
}
}
public List findByCriteria(List criterion) {
log.debug("finding ${declarationName} instance by criteria");
try {
Criteria crit = getSession().createCriteria("it.valueteam.dbcgo.hb.dto.${clazz.entityName}");
Iterator iter = criterion.iterator();
while (iter.hasNext()) {
crit.add((Criterion) iter.next());
}
List results = crit.list();
log.debug("find by criteria successful, result size: "
+ results.size());
return results;
} catch (RuntimeException e) {
log.error("find by criteria failed", e);
throw e;
} finally {
closeSession();
}
}
<#if clazz.identifierProperty?has_content>
public ${declarationName} findById( ${c2j.getJavaTypeName(clazz.identifierProperty, jdk5)} id) {
log.debug("getting ${declarationName} instance with id: " + id);
try {
${declarationName} instance = (${declarationName}) getSession()
.get("it.valueteam.dbcgo.hb.dto.${clazz.entityName}", id);
if (instance==null) {
log.debug("get successful, no instance found");
}
else {
log.debug("get successful, instance found");
}
return instance;
}
catch (RuntimeException re) {
log.error("get failed", re);
throw re;
}
finally {
closeSession();
}
}
</#if>
<#if clazz.hasNaturalId()>
public ${declarationName} findByNaturalId(${c2j.asNaturalIdParameterList(clazz)}) {
log.debug("getting ${declarationName} instance by natural id");
try {
${declarationName} instance = (${declarationName}) getSession()
.createCriteria("${clazz.entityName}")
<#if jdk5>
.add( ${pojo.staticImport("org.hibernate.criterion.Restrictions", "naturalId")}()
<#else>
.add( ${pojo.importType("org.hibernate.criterion.Restrictions")}.naturalId()
</#if>
<#foreach property in pojo.getAllPropertiesIterator()>
<#if property.isNaturalIdentifier()>
.set("${property.name}", ${property.name})
</#if>
</#foreach>
)
.uniqueResult();
if (instance==null) {
log.debug("get successful, no instance found");
}
else {
log.debug("get successful, instance found");
}
return instance;
}
catch (RuntimeException re) {
log.error("query failed", re);
throw re;
}
}
</#if>
<#if jdk5>
public ${pojo.importType("java.util.List")}<${declarationName}> findByExample(${declarationName} instance) {
<#else>
public ${pojo.importType("java.util.List")} findByExample(${declarationName} instance) {
</#if>
log.debug("finding ${declarationName} instance by example");
try {
<#if jdk5>
${pojo.importType("java.util.List")}<${declarationName}> results = (List<${declarationName}>) sessionFactory.getCurrentSession()
<#else>
${pojo.importType("java.util.List")} results = getSession()
</#if>
.createCriteria("it.valueteam.dbcgo.hb.dto.${clazz.entityName}")
<#if jdk5>
.add( ${pojo.staticImport("org.hibernate.criterion.Example", "create")}(instance) )
<#else>
.add(${pojo.importType("org.hibernate.criterion.Example")}.create(instance))
</#if>
.list();
log.debug("find by example successful, result size: " + results.size());
return results;
}
catch (RuntimeException re) {
log.error("find by example failed", re);
throw re;
}
finally {
closeSession();
}
}
<#foreach queryName in cfg.namedQueries.keySet()>
<#if queryName.startsWith(clazz.entityName + ".")>
<#assign methname = c2j.unqualify(queryName)>
<#assign params = cfg.namedQueries.get(queryName).parameterTypes><#assign argList = c2j.asFinderArgumentList(params, pojo)>
<#if jdk5 && methname.startsWith("find")>
public ${pojo.importType("java.util.List")}<${declarationName}> ${methname}(${argList}) {
<#elseif methname.startsWith("count")>
public int ${methname}(${argList}) {
<#else>
public ${pojo.importType("java.util.List")} ${methname}(${argList}) {
</#if>
${pojo.importType("org.hibernate.Query")} query = sessionFactory.getCurrentSession()
.getNamedQuery("${queryName}");
<#foreach param in params.keySet()>
<#if param.equals("maxResults")>
query.setMaxResults(maxResults);
<#elseif param.equals("firstResult")>
query.setFirstResult(firstResult);
<#else>
query.setParameter("${param}", ${param});
</#if>
</#foreach>
<#if jdk5 && methname.startsWith("find")>
return (List<${declarationName}>) query.list();
<#elseif methname.startsWith("count")>
return ( (Integer) query.uniqueResult() ).intValue();
<#else>
return query.list();
</#if>
}
</#if>
</#foreach></#if>
}
</#assign>
${pojo.generateImports()}
${classbody}

View File

@@ -0,0 +1,96 @@
<${c2h.getTag(clazz)}
name="it.valueteam.dbcgo.hb.dto.${c2h.getClassName(clazz)}"
<#if !c2h.getClassName(clazz).equals(clazz.entityName)>
entity-name="${clazz.entityName}"
</#if>
<#if clazz.superclass?exists>
extends="${clazz.getSuperclass().className}"
</#if>
<#if c2h.needsTable(clazz)>
table="${clazz.table.quotedName}"
</#if>
<#if clazz.table.catalog?exists>
catalog="${clazz.table.catalog}"
</#if>
<#if !clazz.mutable>
mutable="false"
</#if>
<#if clazz.useDynamicUpdate()>
dynamic-update="true"
</#if>
<#if clazz.useDynamicInsert()>
dynamic-insert="true"
</#if>
<#if clazz.hasSelectBeforeUpdate()>
select-before-update="true"
</#if>
<#if c2h.needsDiscriminator(clazz)>
discriminator-value="${clazz.discriminatorValue}"
</#if>
<#if clazz.isExplicitPolymorphism()>
polymorphism="explicit"
</#if>
<#if clazz.isLazy() && !c2h.getClassName(clazz).equals(c2h.getProxyInterfaceName(clazz))>
proxy="${c2h.getProxyInterfaceName(clazz)}"
<#elseif !clazz.isLazy()>
lazy="false"
</#if>
<#if clazz.abstract?exists && clazz.abstract>
abstract="true"
</#if>
<#if c2h.getClassName(clazz).equals("DbcgoGestRichRecVirt") || c2h.getClassName(clazz).equals("DbcgoGestRichRecVirtM2m") || c2h.getClassName(clazz).equals("DbcgoGestRichDonVirt")>
optimistic-lock="${c2h.getClassLevelOptimisticLockMode(clazz)}"
</#if>
<#if (clazz.batchSize>1)>
batch-size="${clazz.batchSize}"
</#if>
<#if clazz.where?exists>
where="${clazz.where}"
</#if>
<#if clazz.table.subselect>
subselect="${clazz.table.getSubselect()}"
</#if>
<#if c2h.hasCustomEntityPersister(clazz)>
persister="${clazz.getEntityPersisterClass().name}"
</#if>
<#if clazz.table.rowId?exists>
rowid="${clazz.table.rowId}"
</#if>>
<#assign metaattributable=clazz/>
<#include "meta.hbm.ftl"/>
<#if clazz.table.comment?exists && clazz.table.comment?trim?length!=0>
<comment>${clazz.table.comment}</comment>
</#if>
<#-- TODO: move this to id.hbm.ftl -->
<#if !c2h.isSubclass(clazz)>
<#if clazz.hasIdentifierProperty()>
<#assign property=clazz.getIdentifierProperty()/>
<#include "id.hbm.ftl"/>
<#elseif clazz.hasEmbeddedIdentifier()>
<#assign embeddedid=clazz.key/>
<#include "id.hbm.ftl"/>
</#if>
<#elseif c2h.isJoinedSubclass(clazz)>
<key>
<#foreach column in clazz.key.columnIterator>
<#include "column.hbm.ftl">
</#foreach>
</key>
</#if>
<#-- version has to be done explicitly since Annotation's does not list version first -->
<#if pojo.hasVersionProperty()>
<#assign property=clazz.getVersion()/>
<#include "${c2h.getTag(property)}.hbm.ftl"/>
</#if>
<#foreach property in clazz.getUnjoinedPropertyIterator()>
<#if c2h.getTag(property)!="version" && c2h.getTag(property)!="timestamp">
<#include "${c2h.getTag(property)}.hbm.ftl"/>
</#if>
</#foreach>
</${c2h.getTag(clazz)}>

View File

@@ -0,0 +1,490 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-reverse-engineering PUBLIC "-//Hibernate/Hibernate Reverse Engineering DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-reverse-engineering-3.0.dtd" >
<!-- In questo file vanno configurate tutte le tabelle che NON hanno una FK verso altre tabelle -->
<hibernate-reverse-engineering>
<type-mapping>
<sql-type jdbc-type="NUMERIC" hibernate-type="java.lang.Long" />
</type-mapping>
<!-- NON CANCELLARE -->
<table-filter match-name="PER_NON GENERARE_TUTTO"/>
<!-- TABELLE DA GENERARE -->
<table-filter match-name="DBCGO_GESTIONE_RIC_V00"/>
<!--
<table-filter match-name="MNP_DW_REPORT_TCR"/>
<table-filter match-name="MNP_DW_REPORT_TCR_DONOR"/>
<table-filter match-name="DBCGO_RICARICHE_BMC"/>
<table-filter match-name="MNP_DW_SLA_TC_OUT_VIEW"/>
<table-filter match-name="MNP_DW_SLA_3GG_OUT_VIEW"/>
<table-filter match-name="MNP_DW_SLA_3GG_OUT"/>
<table-filter match-name="MNP_DW_SLA_TC_OUT"/>
<table-filter match-name="MNP_REPORT_AGCOM_VIEW"/>
<<<<
<table-filter match-name="MNP_DW_XML_IN_OUT_VIEW"/>
<table-filter match-name="MNP_REPORT_AGCOM_VIEW"/>
<table-filter match-name="DBCGO_GEST_RIC_REC_VIRT_VIEW"/>
<table-filter match-name="DBCGO_GESTIONE_RIC_V00"/>
<table-filter match-name="DBCGO_GEST_RIC_REC_VIRT_VIEW"/>
<table-filter match-name="MNP_DW_SLA_3GG_OUT_VIEW"/>
<table-filter match-name="MNP_REPORT_AGCOM_VIEW"/>
<table-filter match-name="DBCGO_GESTIONE_RIC_V00"/>
<table-filter match-name="MNP_REPORT_AGCOM_VIEW"/>
<table-filter match-name="MNP_DW_SLA_TC_OUT_VIEW"/>
<table-filter match-name="PER_NON GENERARE_TUTTO"/>
<table-filter match-name="DBCGO_GEST_RIC_DON_VIRT_VIEW"/>
<table-filter match-name="DBCGO_GEST_RIC_RV_M2M_VIEW"/>
<table-filter match-name="DBCGO_GEST_RICH_REC_VIRT_M2M"/>
<table-filter match-name="DBCGO_GEST_RICH_REC_VIRT"/>
<table-filter match-name="DBCGO_GEST_RIC_REC_VIRT_VIEW"/>
<table-filter match-name="MNP_DW_SLA_3GG_OUT_VIEW"/>
<table-filter match-name="DBCGO_GEST_RICH_REC_VIRT"/>
<table-filter match-name="MNP_DW_SLA_MAT_GIOR_VIEW"/>
<table-filter match-name="MNP_DW_SLA_IN_MAT_GIOR_VIEW"/>
<table-filter match-name="DBCGO_STORICO_FILE"/>
<table-filter match-name="DBCGO_ANAGRAFICA_OPERATORI"/>
<table-filter match-name="DBCGO_ANAG_DISSERVIZI"/>
<table-filter match-name="DBCGO_STATO"/>
<table-filter match-name="DBCGO_STATO_REC"/>
<table-filter match-name="DBCGO_STATO_POR"/>
<table-filter match-name="DBCGO_STATO_DON_VIRT"/>
<table-filter match-name="DBCGO_STATO_REC_VIRT"/>
<table-filter match-name="DBCGO_STATO_REC_VIRT_M2M"/>
<table-filter match-name="DBCGO_RICHIESTE_PROCESSATE"/>
<table-filter match-name="DBCGO_DONOR_PP"/>
<table-filter match-name="DBCGO_PORTING_PP"/>
<table-filter match-name="DBCGO_RECIPIENT_PP"/>
<table-filter match-name="MNP_DW_XML_IN_OUT_VIEW"/>
-->
<table name="DBCGO_ANAGRAFICA_OPERATORI">
<primary-key >
<generator class="assigned" />
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_STORICO_FILE">
<primary-key >
<generator class="assigned" />
<key-column name="NOME_FILE"/>
<key-column name="DATA_CREAZIONE"/>
<key-column name="USERNAME"/>
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_SLA_IN_MAT_GIO_TC_VW">
<primary-key >
<generator class="assigned" />
<key-column name="NUMERO_RIGA"/>
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_SLA_IN_MAT_GIO_TC_VW">
<primary-key >
<generator class="assigned" />
<key-column name="NUMERO_RIGA"/>
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_SLA_MAT_GIO_TC_VW">
<primary-key >
<generator class="assigned" />
<key-column name="NUMERO_RIGA"/>
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_SLA_MAT_GIOR_VIEW">
<primary-key >
<generator class="assigned" />
<key-column name="NUMERO_RIGA"/>
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_SLA_IN_MAT_GIOR_VIEW">
<primary-key >
<generator class="assigned" />
<key-column name="NUMERO_RIGA"/>
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_GEST_RICH_REC_VIRT">
<primary-key >
<generator class="assigned" />
</primary-key>
<column name="DATA_VALIDAZIONE_EFF" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_INSERIMENTO" exclude="true"/>
<column name="DATA_ORA_MODIFICA" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<column name="DATA_CUT_OVER_EFF" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_GEST_RICH_REC_VIRT_M2M">
<primary-key >
<generator class="assigned" />
</primary-key>
<column name="DATA_VALIDAZIONE_EFF" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_INSERIMENTO" exclude="true"/>
<column name="DATA_ORA_MODIFICA" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<column name="DATA_PRESA_IN_CARICO" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<column name="DATA_ACQUISIZIONE" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_GEST_RICH_REC_VIRT_M2M">
<primary-key >
<generator class="assigned" />
</primary-key>
<column name="DATA_VALIDAZIONE_EFF" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_INSERIMENTO" exclude="true"/>
<column name="DATA_ORA_MODIFICA" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_GEST_RICH_DON_VIRT">
<primary-key >
<generator class="assigned" />
</primary-key>
<column name="DATA_VALIDAZIONE_EFF" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_ORA_MODIFICA" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<column name="DATA_INSERIMENTO" exclude="true"/>
<column name="DATA_CUT_OVER_EFF" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_DONOR_PP">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
</primary-key>
<column name="DATA_TRANSIZIONE_STATO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_PORTING_PP">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
</primary-key>
<column name="DATA_TRANSIZIONE_STATO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_RECIPIENT_PP">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
</primary-key>
<column name="DATA_TRANSIZIONE_STATO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<!-- viste-->
<table name="DBCGO_GEST_RIC_DON_VIRT_VIEW">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
</primary-key>
<column name="DATA_VALIDAZIONE_EFF" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_ORA_MODIFICA" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="IMPORTO" exclude="false" jdbc-type="NUMERIC" type="java.lang.Long"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_GEST_RIC_REC_VIRT_VIEW">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
</primary-key>
<column name="DATA_VALIDAZIONE_EFF" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_ORA_MODIFICA" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<column name="IMPORTO" exclude="false" jdbc-type="NUMERIC" type="java.lang.Long"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_GESTIONE_RIC_V00">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
</primary-key>
<column name="DATA_ORA_MODIFICA" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<column name="DATA_AGGIORNAMENTO_DCO" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<column name="TIMESTAMP" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<column name="UPDATE_DATE" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_GEST_RIC_RV_M2M_VIEW">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
</primary-key>
<column name="DATA_VALIDAZIONE_EFF" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_ORA_MODIFICA" exclude="false" jdbc-type="TIMESTAMP" type="timestamp"/>
<column name="IMPORTO" exclude="false" jdbc-type="NUMERIC" type="java.lang.Double"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_REPORT_AGCOM_VIEW">
<primary-key >
<generator class="assigned" />
<key-column name="IDROW"/>
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_SLA_TC_OUT_VIEW">
<primary-key >
<generator class="assigned" />
<key-column name="NUMERO_RIGA"/>
</primary-key>
<column name="DATA_MESSAGGIO_SHOW" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_ATTESA_EVENTO_FIN" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_NOTIFICA_CREDITO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_SBL_IMPORTO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_SBL_CREDITO_ANOMALO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_INIZIALE" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_FINALE" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DCO_EFFETTIVA" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_FRONTIERA_SE_IN" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_FRONTIERA_SE_OUT" exclude="false" jdbc-type="DATE" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_SLA_3GG_OUT_VIEW">
<primary-key >
<generator class="assigned" />
<key-column name="NUMERO_RIGA"/>
</primary-key>
<column name="DATA_MESSAGGIO_SHOW" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_ATTESA_EVENTO_FIN" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_INIZIALE" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_FINALE" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_FRONTIERA_SE_IN" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_FRONTIERA_SE_OUT" exclude="false" jdbc-type="DATE" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_SLA_3GG_OUT">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
<key-column name="TIPO_MESSAGGIO"/>
<key-column name="DONOR_EFFETTIVO"/>
<key-column name="RECIPIENT_EFFETTIVO"/>
<key-column name="DONOR_RETE"/>
</primary-key>
<column name="DATA_MESSAGGIO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="T_INIZIALE" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="T_FINALE" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_ATTESA_EVENTO_FIN" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_FRONTIERA_SE_IN" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_FRONTIERA_SE_OUT" exclude="false" jdbc-type="DATE" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_SLA_TC_OUT">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
<key-column name="TIPO_MESSAGGIO"/>
</primary-key>
<column name="DATA_MESSAGGIO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_NOTIFICA_CREDITO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_SBL_IMPORTO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_SBL_CREDITO_ANOMALO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DCO_EFFETTIVA" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_ATTESA_EVENTO_FIN" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="T_INIZIALE" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="T_FINALE" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_FRONTIERA_SE_IN" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_FRONTIERA_SE_OUT" exclude="false" jdbc-type="DATE" type="timestamp"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_XML_IN_OUT_VIEW">
<primary-key >
<generator class="assigned" />
<key-column name="NOME_FILE"/>
<key-column name="ID_RICHIESTA"/>
<key-column name="TIPO_FILE"/>
<key-column name="DIREZIONE"/>
<key-column name="NOME_FILE_ACK"/>
<key-column name="NOME_FILE_XML"/>
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_SLA_FRANCHIGIA_OUT_VIEW">
<primary-key >
<generator class="assigned" />
<key-column name="NUMERO_RIGA"/>
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_ANAG_DISSERVIZI">
<primary-key >
<generator class="assigned" />
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<!-- Cristiano aggiunta per Ks10-->
<table name="DBCGO_RICHIESTE_PROCESSATE">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
<key-column name="PROCESSO"/>
</primary-key>
<column name="DATA_PIC" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_VAL" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DCO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_CHIUSURA_PROCESSO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATA_ATTIVITA_RETE" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="DATARICEZIONERICHIESTA" exclude="false" jdbc-type="DATE" type="timestamp"/>
</table>
<table name="DBCGO_STATO">
<primary-key >
<generator class="assigned" />
<key-column name="ID_STATO"/>
</primary-key>
</table>
<table name="DBCGO_STATO_REC">
<primary-key >
<generator class="assigned" />
<key-column name="ID_STATO"/>
</primary-key>
</table>
<table name="DBCGO_STATO_POR">
<primary-key >
<generator class="assigned" />
<key-column name="ID_STATO"/>
</primary-key>
</table>
<table name="DBCGO_STATO_DON_VIRT">
<primary-key >
<generator class="assigned" />
<key-column name="ID_STATO"/>
</primary-key>
</table>
<table name="DBCGO_STATO_REC_VIRT">
<primary-key >
<generator class="assigned" />
<key-column name="ID_STATO"/>
</primary-key>
</table>
<table name="DBCGO_STATO_REC_VIRT_M2M">
<primary-key >
<generator class="assigned" />
<key-column name="ID_STATO"/>
</primary-key>
</table>
<!-- DEVIS KS12 2012-->
<table name="MNP_DW_REPORT_TCR">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
<key-column name="CODICE_OPERATORE_REC_EFF"/>
<key-column name="CODICE_OPERATORE_DON_EFF"/>
</primary-key>
<column name="DATA_DI_RIFERIMENTO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="TCR1" exclude="false" jdbc-type="NUMERIC" type="java.lang.Float"/>
<column name="TCR2" exclude="false" jdbc-type="NUMERIC" type="java.lang.Float"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_RICARICHE_BMC">
<primary-key >
<generator class="assigned" />
<key-column name="DATA_RIF"/>
<key-column name="MSISDN"/>
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="MNP_DW_REPORT_TCR_DONOR">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
<key-column name="CODICE_OPERATORE_REC_EFF"/>
<key-column name="CODICE_OPERATORE_DON_EFF"/>
</primary-key>
<column name="DATA_DI_RIFERIMENTO" exclude="false" jdbc-type="DATE" type="timestamp"/>
<column name="TCR1" exclude="false" jdbc-type="NUMERIC" type="java.lang.Float"/>
<column name="TCR2" exclude="false" jdbc-type="NUMERIC" type="java.lang.Float"/>
<column name="IMP_TOT_RICARICHE" exclude="false" jdbc-type="NUMERIC" type="java.lang.Float"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
</hibernate-reverse-engineering>

View File

@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-reverse-engineering PUBLIC "-//Hibernate/Hibernate Reverse Engineering DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-reverse-engineering-3.0.dtd" >
<!-- In questo file vanno configurate tutte le tabelle che hanno una FK FISICHE verso altre tabelle -->
<hibernate-reverse-engineering>
<type-mapping>
<sql-type jdbc-type="NUMERIC" hibernate-type="java.lang.Long" />
</type-mapping>
<!-- NON CANCELLARE -->
<table-filter match-name="PER_NON GENERARE_TUTTO"/>
<!-- <table-filter match-name="DBCGO_GEST_RIC_RV_M2M_TC"/>
-->
<!--
<table-filter match-name="DBCGO_GEST_RIC_DON_VIRT_TC"/>
<table-filter match-name="DBCGO_GEST_RIC_REC_VIRT_TC"/>
<table-filter match-name="DBCGO_GEST_RIC_RV_M2M_TC"/>
<table-filter match-name="DBCGO_GEST_RIC_DON_VIRT_TC"/>
<table-filter match-name="DBCGO_GEST_RIC_REC_VIRT_TC"/>
<table-filter match-name="DBCGO_VO_MESI_RIFERIMENTO"/>
<table-filter match-name="DBCGO_VO_LISTA_STATI_PROCESSO"/>
<table-filter match-name="DBCGO_PROCESSO_PENALI"/>-->
<table name="DBCGO_PROCESSO_PENALI">
<primary-key >
<generator class="assigned" />
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_VO_MESI_RIFERIMENTO">
<primary-key >
<generator class="assigned" />
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_VO_LISTA_STATI_PROCESSO">
<primary-key >
<generator class="assigned" />
</primary-key>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_GEST_RIC_REC_VIRT_TC">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
</primary-key>
<column name="DATA_ORA_MODIFICA" exclude="false" type="timestamp"/>
<column name="IMPORTO" exclude="false" jdbc-type="NUMERIC" type="float"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_GEST_RIC_DON_VIRT_TC">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
</primary-key>
<column name="DATA_ORA_MODIFICA" exclude="false" type="timestamp"/>
<column name="IMPORTO" exclude="false" jdbc-type="NUMERIC" type="float"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
<table name="DBCGO_GEST_RIC_RV_M2M_TC">
<primary-key >
<generator class="assigned" />
<key-column name="ID_RICHIESTA"/>
</primary-key>
<column name="DATA_ORA_MODIFICA" exclude="false" type="timestamp"/>
<column name="IMPORTO" exclude="false" jdbc-type="NUMERIC" type="float"/>
<foreign-key>
<many-to-one exclude="true"/>
</foreign-key>
</table>
</hibernate-reverse-engineering>

View File

@@ -0,0 +1,32 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<!-- Generated by MyEclipse Hibernate Tools. -->
<hibernate-configuration>
<session-factory >
<property name="connection.username">DBCGO</property>
<property name="connection.url">
jdbc:oracle:thin:@(description=(address=(host=10.174.28.38)(protocol=
tcp)(port=1521))(connect_data=(service_name=DB_SVI)))
</property>
<property name="dialect">
org.hibernate.dialect.Oracle9Dialect
</property>
<property name="hibernate.query.factory_class">
org.hibernate.hql.classic.ClassicQueryTranslatorFactory
</property>
<property name="cache.use_second_level_cache">false</property>
<property name="connection.password">DBCGO</property>
<property name="connection.driver_class">
oracle.jdbc.driver.OracleDriver
</property>
<property name="transaction.auto_close_session">true</property>
<property name="show_sql">true</property>
<property name="default_schema">DBCGO</property>
</session-factory>
</hibernate-configuration>

View File

@@ -0,0 +1,202 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed 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
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@@ -0,0 +1,11 @@
=========================================================================
== NOTICE file corresponding to the section 4 d of ==
== the Apache License, Version 2.0, ==
== in this case for the Apache Maven distribution. ==
=========================================================================
This product includes software developed by
The Apache Software Foundation (http://www.apache.org/).
This product includes software (Plexus and Classworlds) developed by
The Codehaus Foundation (http://www.codehaus.org/).

View File

@@ -0,0 +1,78 @@
Apache Maven
What is it?
-----------
Maven is a software project management and comprehension tool. Based on
the concept of a Project Object Model (POM), Maven can manage a project's
build, reporting and documentation from a central piece of information.
Documentation
-------------
The documentation available as of the date of this release is included in
HTML format in the docs/ directory.
The most up-to-date documentation can be found at http://maven.apache.org/.
Release Notes
-------------
The full list of changes can be found at http://maven.apache.org/release-notes.html.
System Requirements
-------------------
JDK:
1.4 or above (this is to execute Maven - it still allows you to build against 1.3
and prior JDK's).
Memory:
No minimum requirement.
Disk:
No minimum requirement. Approximately 100MB will be used for your local repository,
however this will vary depending on usage and can be removed and redownloaded at
any time.
Operating System:
No minimum requirement. On Windows, Windows NT and above or Cygwin is required for
the startup scripts. Tested on Windows XP, Fedora Core and Mac OS X.
Installing Maven
----------------
1) Unpack the archive where you would like to store the binaries, eg:
Unix-based Operating Systems (Linux, Solaris and Mac OS X)
tar zxvf apache-maven-2.0.x.tar.gz
Windows 2000/XP
unzip apache-maven-2.0.x.zip
2) A directory called "apache-maven-2.0.x" will be created.
3) Add the bin directory to your PATH, eg:
Unix-based Operating Systems (Linux, Solaris and Mac OS X)
export PATH=/usr/local/apache-maven-2.0.x/bin:$PATH
Windows 2000/XP
set PATH="c:\program files\apache-maven-2.0.x\bin";%PATH%
4) Make sure JAVA_HOME is set to the location of your JDK
5) Run "mvn --version" to verify that it is correctly installed.
For complete documentation, see http://maven.apache.org/download.html#Installation
Licensing
---------
Please see the file called LICENSE.TXT
Maven URLS
----------
Home Page: http://maven.apache.org/
Downloads: http://maven.apache.org/downloads.html
Mailing Lists: http://maven.apache.org/mail-lists.html
Source Code: http://svn.apache.org/repos/asf/maven/
Issue Tracking: http://jira.codehaus.org/browse/MNG
Wiki: http://docs.codehaus.org/display/MAVENUSER/
Available Plugins: http://maven.apache.org/plugins/index.html

View File

@@ -0,0 +1,26 @@
#!/bin/sh
# ----------------------------------------------------------------------------
# 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
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# ----------------------------------------------------------------------------
echo ""
echo THE m2 COMMMAND IS DEPRECATED - PLEASE RUN mvn INSTEAD
echo ""
. `dirname "$0"`/mvn
exec "`dirname "$0"`/mvn" $QUOTED_ARGS

View File

@@ -0,0 +1,26 @@
@REM ----------------------------------------------------------------------------
@REM Licensed to the Apache Software Foundation (ASF) under one
@REM or more contributor license agreements. See the NOTICE file
@REM distributed with this work for additional information
@REM regarding copyright ownership. The ASF licenses this file
@REM to you under the Apache License, Version 2.0 (the
@REM "License"); you may not use this file except in compliance
@REM with the License. You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing,
@REM software distributed under the License is distributed on an
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@REM KIND, either express or implied. See the License for the
@REM specific language governing permissions and limitations
@REM under the License.
@REM ----------------------------------------------------------------------------
@ECHO OFF
echo.
echo THE m2 COMMMAND IS DEPRECATED - PLEASE RUN mvn INSTEAD
echo.
"%~dp0\mvn" %*

View File

@@ -0,0 +1,6 @@
main is org.apache.maven.cli.MavenCli from plexus.core
set maven.home default ${user.home}/m2
[plexus.core]
load ${maven.home}/lib/*.jar

View File

@@ -0,0 +1,163 @@
#!/bin/sh
# ----------------------------------------------------------------------------
# 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
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# ----------------------------------------------------------------------------
# ----------------------------------------------------------------------------
# Maven2 Start Up Batch script
#
# Required ENV vars:
# ------------------
# JAVA_HOME - location of a JDK home dir
#
# Optional ENV vars
# -----------------
# M2_HOME - location of maven2's installed home dir
# MAVEN_OPTS - parameters passed to the Java VM when running Maven
# e.g. to debug Maven itself, use
# set MAVEN_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
# ----------------------------------------------------------------------------
QUOTED_ARGS=""
while [ "$1" != "" ] ; do
QUOTED_ARGS="$QUOTED_ARGS \"$1\""
shift
done
if [ -f /etc/mavenrc ] ; then
. /etc/mavenrc
fi
if [ -f "$HOME/.mavenrc" ] ; then
. "$HOME/.mavenrc"
fi
# OS specific support. $var _must_ be set to either true or false.
cygwin=false;
darwin=false;
mingw=false
case "`uname`" in
CYGWIN*) cygwin=true ;;
MINGW*) mingw=true;;
Darwin*) darwin=true
if [ -z "$JAVA_VERSION" ] ; then
JAVA_VERSION="CurrentJDK"
else
echo "Using Java version: $JAVA_VERSION"
fi
if [ -z "$JAVA_HOME" ] ; then
JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/${JAVA_VERSION}/Home
fi
;;
esac
if [ -z "$JAVA_HOME" ] ; then
if [ -r /etc/gentoo-release ] ; then
JAVA_HOME=`java-config --jre-home`
fi
fi
if [ -z "$M2_HOME" ] ; then
## resolve links - $0 may be a link to maven's home
PRG="$0"
# need this for relative symlinks
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG="`dirname "$PRG"`/$link"
fi
done
saveddir=`pwd`
M2_HOME=`dirname "$PRG"`/..
# make it fully qualified
M2_HOME=`cd "$M2_HOME" && pwd`
cd "$saveddir"
# echo Using m2 at $M2_HOME
fi
# For Cygwin, ensure paths are in UNIX format before anything is touched
if $cygwin ; then
[ -n "$M2_HOME" ] &&
M2_HOME=`cygpath --unix "$M2_HOME"`
[ -n "$JAVA_HOME" ] &&
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
[ -n "$CLASSPATH" ] &&
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
fi
# For Migwn, ensure paths are in UNIX format before anything is touched
if $mingw ; then
[ -n "$M2_HOME" ] &&
M2_HOME="`(cd "$M2_HOME"; pwd)`"
[ -n "$JAVA_HOME" ] &&
JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
# TODO classpath?
fi
if [ -z "$JAVACMD" ] ; then
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
else
JAVACMD="`which java`"
fi
fi
if [ ! -x "$JAVACMD" ] ; then
echo "Error: JAVA_HOME is not defined correctly."
echo " We cannot execute $JAVACMD"
exit 1
fi
if [ -z "$JAVA_HOME" ] ; then
echo "Warning: JAVA_HOME environment variable is not set."
fi
CLASSWORLDS_LAUNCHER=org.codehaus.classworlds.Launcher
# For Cygwin, switch paths to Windows format before running java
if $cygwin; then
[ -n "$M2_HOME" ] &&
M2_HOME=`cygpath --path --windows "$M2_HOME"`
[ -n "$JAVA_HOME" ] &&
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
[ -n "$HOME" ] &&
HOME=`cygpath --path --windows "$HOME"`
fi
exec "$JAVACMD" \
$MAVEN_OPTS \
-classpath "${M2_HOME}"/boot/classworlds-*.jar \
"-Dclassworlds.conf=${M2_HOME}/bin/m2.conf" \
"-Dmaven.home=${M2_HOME}" \
${CLASSWORLDS_LAUNCHER} $QUOTED_ARGS

View File

@@ -0,0 +1,188 @@
@REM ----------------------------------------------------------------------------
@REM Licensed to the Apache Software Foundation (ASF) under one
@REM or more contributor license agreements. See the NOTICE file
@REM distributed with this work for additional information
@REM regarding copyright ownership. The ASF licenses this file
@REM to you under the Apache License, Version 2.0 (the
@REM "License"); you may not use this file except in compliance
@REM with the License. You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing,
@REM software distributed under the License is distributed on an
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@REM KIND, either express or implied. See the License for the
@REM specific language governing permissions and limitations
@REM under the License.
@REM ----------------------------------------------------------------------------
@REM ----------------------------------------------------------------------------
@REM Maven2 Start Up Batch script
@REM
@REM Required ENV vars:
@REM JAVA_HOME - location of a JDK home dir
@REM
@REM Optional ENV vars
@REM M2_HOME - location of maven2's installed home dir
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
@REM e.g. to debug Maven itself, use
@REM set MAVEN_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
@REM ----------------------------------------------------------------------------
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
@echo off
@REM enable echoing my setting MAVEN_BATCH_ECHO to 'on'
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
@REM set %HOME% to equivalent of $HOME
if "%HOME%" == "" (set HOME=%HOMEDRIVE%%HOMEPATH%)
@REM Execute a user defined script before this one
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
set ERROR_CODE=0
@REM set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" @setlocal
if "%OS%"=="WINNT" @setlocal
@REM ==== START VALIDATION ====
if not "%JAVA_HOME%" == "" goto OkJHome
echo.
echo ERROR: JAVA_HOME not found in your environment.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation
echo.
goto error
:OkJHome
if exist "%JAVA_HOME%\bin\java.exe" goto chkMHome
echo.
echo ERROR: JAVA_HOME is set to an invalid directory.
echo JAVA_HOME = %JAVA_HOME%
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation
echo.
goto error
:chkMHome
if not "%M2_HOME%"=="" goto valMHome
if "%OS%"=="Windows_NT" SET M2_HOME=%~dp0..
if "%OS%"=="WINNT" SET M2_HOME=%~dp0..
if not "%M2_HOME%"=="" goto valMHome
echo.
echo ERROR: M2_HOME not found in your environment.
echo Please set the M2_HOME variable in your environment to match the
echo location of the Maven installation
echo.
goto error
:valMHome
:stripMHome
if not _%M2_HOME:~-1%==_\ goto checkMBat
set M2_HOME=%M2_HOME:~0,-1%
goto stripMHome
:checkMBat
if exist "%M2_HOME%\bin\mvn.bat" goto init
echo.
echo ERROR: M2_HOME is set to an invalid directory.
echo M2_HOME = %M2_HOME%
echo Please set the M2_HOME variable in your environment to match the
echo location of the Maven installation
echo.
goto error
@REM ==== END VALIDATION ====
:init
@REM Decide how to startup depending on the version of windows
@REM -- Windows NT with Novell Login
if "%OS%"=="WINNT" goto WinNTNovell
@REM -- Win98ME
if NOT "%OS%"=="Windows_NT" goto Win9xArg
:WinNTNovell
@REM -- 4NT shell
if "%@eval[2+2]" == "4" goto 4NTArgs
@REM -- Regular WinNT shell
set MAVEN_CMD_LINE_ARGS=%*
goto endInit
@REM The 4NT Shell from jp software
:4NTArgs
set MAVEN_CMD_LINE_ARGS=%$
goto endInit
:Win9xArg
@REM Slurp the command line arguments. This loop allows for an unlimited number
@REM of agruments (up to the command line limit, anyway).
set MAVEN_CMD_LINE_ARGS=
:Win9xApp
if %1a==a goto endInit
set MAVEN_CMD_LINE_ARGS=%MAVEN_CMD_LINE_ARGS% %1
shift
goto Win9xApp
@REM Reaching here means variables are defined and arguments have been captured
:endInit
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
@REM -- 4NT shell
if "%@eval[2+2]" == "4" goto 4NTCWJars
@REM -- Regular WinNT shell
for %%i in ("%M2_HOME%"\boot\classworlds-*) do set CLASSWORLDS_JAR="%%i"
goto runm2
@REM The 4NT Shell from jp software
:4NTCWJars
for %%i in ("%M2_HOME%\boot\classworlds-*") do set CLASSWORLDS_JAR="%%i"
goto runm2
@REM Start MAVEN2
:runm2
%MAVEN_JAVA_EXE% %MAVEN_OPTS% -classpath %CLASSWORLDS_JAR% "-Dclassworlds.conf=%M2_HOME%\bin\m2.conf" "-Dmaven.home=%M2_HOME%" org.codehaus.classworlds.Launcher %MAVEN_CMD_LINE_ARGS%
if ERRORLEVEL 1 goto error
goto end
:error
if "%OS%"=="Windows_NT" @endlocal
if "%OS%"=="WINNT" @endlocal
set ERROR_CODE=1
:end
@REM set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" goto endNT
if "%OS%"=="WINNT" goto endNT
@REM For old DOS remove the set variables from ENV - we assume they were not set
@REM before we started - at least we don't leave any baggage around
set MAVEN_JAVA_EXE=
set MAVEN_CMD_LINE_ARGS=
goto postExec
:endNT
@endlocal & set ERROR_CODE=%ERROR_CODE%
:postExec
if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
@REM pause the batch file if MAVEN_BATCH_PAUSE is set to 'on'
if "%MAVEN_BATCH_PAUSE%" == "on" pause
if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
exit /B %ERROR_CODE%

View File

@@ -0,0 +1,168 @@
#!/bin/sh
# ----------------------------------------------------------------------------
# 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
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# ----------------------------------------------------------------------------
# ----------------------------------------------------------------------------
# Maven2 Start Up Batch script
#
# Required ENV vars:
# ------------------
# JAVA_HOME - location of a JDK home dir
#
# Optional ENV vars
# -----------------
# M2_HOME - location of maven2's installed home dir
# MAVEN_OPTS - parameters passed to the Java VM when running Maven
# e.g. to debug Maven itself, use
# set MAVEN_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
# ----------------------------------------------------------------------------
INT_MAVEN_OPTS="$MAVEN_OPTS -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000"
echo Preparing to Execute Maven in Debug Mode
QUOTED_ARGS=""
while [ "$1" != "" ] ; do
QUOTED_ARGS="$QUOTED_ARGS \"$1\""
shift
done
if [ -f /etc/mavenrc ] ; then
. /etc/mavenrc
fi
if [ -f "$HOME/.mavenrc" ] ; then
. "$HOME/.mavenrc"
fi
# OS specific support. $var _must_ be set to either true or false.
cygwin=false;
darwin=false;
mingw=false
case "`uname`" in
CYGWIN*) cygwin=true ;;
MINGW*) mingw=true;;
Darwin*) darwin=true
if [ -z "$JAVA_VERSION" ] ; then
JAVA_VERSION="CurrentJDK"
else
echo "Using Java version: $JAVA_VERSION"
fi
if [ -z "$JAVA_HOME" ] ; then
JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/${JAVA_VERSION}/Home
fi
;;
esac
if [ -z "$JAVA_HOME" ] ; then
if [ -r /etc/gentoo-release ] ; then
JAVA_HOME=`java-config --jre-home`
fi
fi
if [ -z "$M2_HOME" ] ; then
## resolve links - $0 may be a link to maven's home
PRG="$0"
# need this for relative symlinks
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG="`dirname "$PRG"`/$link"
fi
done
saveddir=`pwd`
M2_HOME=`dirname "$PRG"`/..
# make it fully qualified
M2_HOME=`cd "$M2_HOME" && pwd`
cd "$saveddir"
# echo Using m2 at $M2_HOME
fi
# For Cygwin, ensure paths are in UNIX format before anything is touched
if $cygwin ; then
[ -n "$M2_HOME" ] &&
M2_HOME=`cygpath --unix "$M2_HOME"`
[ -n "$JAVA_HOME" ] &&
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
[ -n "$CLASSPATH" ] &&
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
fi
# For Migwn, ensure paths are in UNIX format before anything is touched
if $mingw ; then
[ -n "$M2_HOME" ] &&
M2_HOME="`(cd "$M2_HOME"; pwd)`"
[ -n "$JAVA_HOME" ] &&
JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
# TODO classpath?
fi
if [ -z "$JAVACMD" ] ; then
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
else
JAVACMD=java
fi
fi
if [ ! -x "$JAVACMD" ] ; then
echo "Error: JAVA_HOME is not defined correctly."
echo " We cannot execute $JAVACMD"
exit 1
fi
if [ -z "$JAVA_HOME" ] ; then
echo "Warning: JAVA_HOME environment variable is not set."
fi
CLASSWORLDS_LAUNCHER=org.codehaus.classworlds.Launcher
# For Cygwin, switch paths to Windows format before running java
if $cygwin; then
[ -n "$M2_HOME" ] &&
M2_HOME=`cygpath --path --windows "$M2_HOME"`
[ -n "$JAVA_HOME" ] &&
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
[ -n "$HOME" ] &&
HOME=`cygpath --path --windows "$HOME"`
fi
exec "$JAVACMD" \
$INT_MAVEN_OPTS \
-classpath "${M2_HOME}"/boot/classworlds-*.jar \
"-Dclassworlds.conf=${M2_HOME}/bin/m2.conf" \
"-Dmaven.home=${M2_HOME}" \
${CLASSWORLDS_LAUNCHER} $QUOTED_ARGS

View File

@@ -0,0 +1,192 @@
@REM ----------------------------------------------------------------------------
@REM Licensed to the Apache Software Foundation (ASF) under one
@REM or more contributor license agreements. See the NOTICE file
@REM distributed with this work for additional information
@REM regarding copyright ownership. The ASF licenses this file
@REM to you under the Apache License, Version 2.0 (the
@REM "License"); you may not use this file except in compliance
@REM with the License. You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing,
@REM software distributed under the License is distributed on an
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@REM KIND, either express or implied. See the License for the
@REM specific language governing permissions and limitations
@REM under the License.
@REM ----------------------------------------------------------------------------
@REM ----------------------------------------------------------------------------
@REM Maven2 Start Up Batch script
@REM
@REM Required ENV vars:
@REM JAVA_HOME - location of a JDK home dir
@REM
@REM Optional ENV vars
@REM M2_HOME - location of maven2's installed home dir
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
@REM e.g. to debug Maven itself, use
@REM set MAVEN_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
@REM ----------------------------------------------------------------------------
set INT_MAVEN_OPTS=%MAVEN_OPTS% -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
@echo Preparing to Execute Maven in Debug Mode
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
@echo off
@REM enable echoing my setting MAVEN_BATCH_ECHO to 'on'
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
@REM set %HOME% to equivalent of $HOME
if "%HOME%" == "" (set HOME=%HOMEDRIVE%%HOMEPATH%)
@REM Execute a user defined script before this one
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
set ERROR_CODE=0
@REM set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" @setlocal
if "%OS%"=="WINNT" @setlocal
@REM ==== START VALIDATION ====
if not "%JAVA_HOME%" == "" goto OkJHome
echo.
echo ERROR: JAVA_HOME not found in your environment.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation
echo.
goto error
:OkJHome
if exist "%JAVA_HOME%\bin\java.exe" goto chkMHome
echo.
echo ERROR: JAVA_HOME is set to an invalid directory.
echo JAVA_HOME = %JAVA_HOME%
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation
echo.
goto error
:chkMHome
if not "%M2_HOME%"=="" goto valMHome
if "%OS%"=="Windows_NT" SET M2_HOME=%~dp0..
if "%OS%"=="WINNT" SET M2_HOME=%~dp0..
if not "%M2_HOME%"=="" goto valMHome
echo.
echo ERROR: M2_HOME not found in your environment.
echo Please set the M2_HOME variable in your environment to match the
echo location of the Maven installation
echo.
goto error
:valMHome
:stripMHome
if not _%M2_HOME:~-1%==_\ goto checkMBat
set M2_HOME=%M2_HOME:~0,-1%
goto stripMHome
:checkMBat
if exist "%M2_HOME%\bin\mvn.bat" goto init
echo.
echo ERROR: M2_HOME is set to an invalid directory.
echo M2_HOME = %M2_HOME%
echo Please set the M2_HOME variable in your environment to match the
echo location of the Maven installation
echo.
goto error
@REM ==== END VALIDATION ====
:init
@REM Decide how to startup depending on the version of windows
@REM -- Windows NT with Novell Login
if "%OS%"=="WINNT" goto WinNTNovell
@REM -- Win98ME
if NOT "%OS%"=="Windows_NT" goto Win9xArg
:WinNTNovell
@REM -- 4NT shell
if "%@eval[2+2]" == "4" goto 4NTArgs
@REM -- Regular WinNT shell
set MAVEN_CMD_LINE_ARGS=%*
goto endInit
@REM The 4NT Shell from jp software
:4NTArgs
set MAVEN_CMD_LINE_ARGS=%$
goto endInit
:Win9xArg
@REM Slurp the command line arguments. This loop allows for an unlimited number
@REM of agruments (up to the command line limit, anyway).
set MAVEN_CMD_LINE_ARGS=
:Win9xApp
if %1a==a goto endInit
set MAVEN_CMD_LINE_ARGS=%MAVEN_CMD_LINE_ARGS% %1
shift
goto Win9xApp
@REM Reaching here means variables are defined and arguments have been captured
:endInit
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
@REM -- 4NT shell
if "%@eval[2+2]" == "4" goto 4NTCWJars
@REM -- Regular WinNT shell
for %%i in ("%M2_HOME%"\boot\classworlds-*) do set CLASSWORLDS_JAR="%%i"
goto runm2
@REM The 4NT Shell from jp software
:4NTCWJars
for %%i in ("%M2_HOME%\boot\classworlds-*") do set CLASSWORLDS_JAR="%%i"
goto runm2
@REM Start MAVEN2
:runm2
%MAVEN_JAVA_EXE% %INT_MAVEN_OPTS% -classpath %CLASSWORLDS_JAR% "-Dclassworlds.conf=%M2_HOME%\bin\m2.conf" "-Dmaven.home=%M2_HOME%" org.codehaus.classworlds.Launcher %MAVEN_CMD_LINE_ARGS%
if ERRORLEVEL 1 goto error
goto end
:error
if "%OS%"=="Windows_NT" @endlocal
if "%OS%"=="WINNT" @endlocal
set ERROR_CODE=1
:end
@REM set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" goto endNT
if "%OS%"=="WINNT" goto endNT
@REM For old DOS remove the set variables from ENV - we assume they were not set
@REM before we started - at least we don't leave any baggage around
set MAVEN_JAVA_EXE=
set MAVEN_CMD_LINE_ARGS=
goto postExec
:endNT
@endlocal & set ERROR_CODE=%ERROR_CODE%
:postExec
if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
@REM pause the batch file if MAVEN_BATCH_PAUSE is set to 'on'
if "%MAVEN_BATCH_PAUSE%" == "on" pause
if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
exit /B %ERROR_CODE%

View File

@@ -0,0 +1,66 @@
<settings>
<!--
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<username></username>
<password></password>
<host>127.0.0.1</host>
<port>808</port>
<nonProxyHosts>localhost</nonProxyHosts>
</proxy>
</proxies>
-->
<localRepository>${env.REPOLOCAL}dbcgo_repository</localRepository>
<servers>
<server>
<id>internal</id>
<username>admin</username>
<password>admin1</password>
</server>
<server>
<id>snapshot</id>
<username>admin</username>
<password>admin1</password>
</server>
</servers>
<!--<profiles>
<profile>
<id>Repository Proxy</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>internal</id>
<url>
http://10.20.40.59:8080/archiva/repository/TI-repo-int/
</url>
</repository>
<repository>
<id>snapshot</id>
<url>
http://10.20.40.59:8080/archiva/repository/TI-repo-sna/
</url>
</repository>
</repositories>
</profile>
</profiles> -->
<!-- activeProfiles
| List of profiles that are active for all builds.
|
<activeProfiles>
<activeProfile>alwaysActiveProfile</activeProfile>
<activeProfile>anotherAlwaysActiveProfile</activeProfile>
</activeProfiles>
-->
</settings>

View File

@@ -0,0 +1,8 @@
@set PATH=%PATH%;%cd%%2%
echo %cd%%2%
cd %1
mvn clean install

View File

@@ -0,0 +1,14 @@
#!/bin/ksh
echo "starting maven"
PATH=$PATH:$PWD$2
echo "---"
echo $PATH
echo "---"
echo $cd$2
echo $1
cd $1
mvn clean install
echo "end maven"

View File

@@ -0,0 +1,101 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="jndi.class">
weblogic.jndi.WLInitialContextFactory
</property>
<property name="connection.datasource">jdbc/dbcgoDS</property>
<property name="transaction.factory_class">
org.hibernate.transaction.JTATransactionFactory
</property>
<property name="transaction.manager_lookup_class">
org.hibernate.transaction.WeblogicTransactionManagerLookup
</property>
<!-- Chooses the HQL parser implementation -->
<property name="hibernate.query.factory_class">
org.hibernate.hql.classic.ClassicQueryTranslatorFactory
</property>
<property name="cache.use_second_level_cache">false</property>
<property name="current_session_context_class">jta</property>
<property name="dialect">org.hibernate.dialect.OracleDialect</property>
<property name="connection.password"></property>
<property name="jta.UserTransaction">
javax.transaction.UserTransaction
</property>
<property name="transaction.auto_close_session">true</property>
<property name="show_sql">false</property>
<!-- GESTIONE RICHIESTE -->
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoGestRichDonVirt.hbm.xml" />
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoGestRichRecVirt.hbm.xml" />
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoGestRichRecVirtM2m.hbm.xml" />
<!-- TRASFERIMENTO CREDITO -->
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoGestRicDonVirtTc.hbm.xml" />
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoGestRicRecVirtTc.hbm.xml" />
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoGestRicRvM2mTc.hbm.xml" />
<!--x12 2012-->
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoDonorPp.hbm.xml"/>
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoRecipientPp.hbm.xml"/>
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoPortingPp.hbm.xml"/>
<!-- VISTE -->
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoGestRicDonVirtView.hbm.xml" />
<mapping
resource="it/valueteam/dbcgo/hb/dto/MnpReportAgcomView.hbm.xml" />
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoGestRicRvM2mView.hbm.xml" />
<mapping
resource="it/valueteam/dbcgo/hb/dto/DbcgoGestRicRecVirtView.hbm.xml" />
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoGestioneRicV00.hbm.xml" />
<mapping resource="it/valueteam/dbcgo/hb/dto/MnpDwSlaTcOutView.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/MnpDwSla3ggOutView.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoVoPrevalidazioneDbc.hbm.xml" />
<mapping resource="it/valueteam/dbcgo/hb/dto/MnpDwXmlInOutView.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/MnpDwSlaFranchigiaOutView.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/MnpDwSlaMatGioTcVw.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/MnpDwSlaMatGiorView.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/MnpDwSlaInMatGioTcVw.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/MnpDwSlaInMatGiorView.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoStoricoFile.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoAnagraficaOperatori.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoFilePenali.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoVoMesiRiferimento.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoVoListaStatiProcesso.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoProcessoPenali.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoAnagDisservizi.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoAnagFranchigie.hbm.xml"/>
<!-- aggiunta cristiano per KS10 -->
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoRichiesteProcessate.hbm.xml"/>
<!-- aggiunta devis per KS10 NB. Non viene generato automaticamente -->
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoReportIndennizziCliente.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoReportIndennizziClienteDownload.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoStato.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoStatoDonVirt.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoStatoPor.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoStatoRec.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoStatoRecVirt.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoStatoRecVirtM2m.hbm.xml"/>
<!-- aggiunta devis per KS12 2012 -->
<mapping resource="it/valueteam/dbcgo/hb/dto/MnpDwReportTcr.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/MnpDwReportTcrDonor.hbm.xml"/>
<mapping resource="it/valueteam/dbcgo/hb/dto/DbcgoRicaricheBmc.hbm.xml"/>
<class-cache class="it.valueteam.dbcgo.hb.dto.DbcgoVoListaStatiProcesso" usage="read-only"/>
<class-cache class="it.valueteam.dbcgo.hb.dto.DbcgoVoMesiRiferimento" usage="read-only"/>
<class-cache class="it.valueteam.dbcgo.hb.dto.DbcgoVoPrevalidazioneDbc" usage="read-only"/>
<class-cache class="it.valueteam.dbcgo.hb.dto.DbcgoGestioneRicV00" usage="read-only"/>
</session-factory>
</hibernate-configuration>

View File

@@ -0,0 +1,2 @@
Manifest-Version: 1.0

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN" "http://java.sun.com/dtd/application_1_3.dtd">
<application>
<display-name>dbcgo</display-name>
<module>
<web>
<web-uri>dbcgo-gui.war</web-uri>
<context-root>/dbcgo</context-root>
</web>
</module>
<module>
<ejb>dbcgo-ejbmodule.jar</ejb>
</module>
<module>
<ejb>process-executor.jar</ejb>
</module>
</application>

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE weblogic-application PUBLIC "-//BEA Systems, Inc.//DTD WebLogic Application 8.1.0//EN" "http://www.bea.com/servers/wls810/dtd/weblogic-application_2_0.dtd">
<weblogic-application>
<ejb>
<start-mdbs-with-application>false</start-mdbs-with-application>
</ejb>
<!--
<listener>
<listener-class>mnp.init.EarLifecycleListener</listener-class>
</listener>
-->
</weblogic-application>

View File

@@ -0,0 +1,17 @@
#home di Java SDK
sdk.home=C:/Program Files/Java/jdk1.6.0_45
#home di weblogic server
weblogic.home=C:/Oracle/Middleware/wlserver_10.3
#home del progetto, deve puntare alla cartella mnp/FE/mnpdev
project.home=.
#Properties per il deploy dell'applicazione (admin server)
deploy.username=weblogic
deploy.username=weblogic
deploy.server=localhost
deploy.port=8001
deploy.url=t3://${deploy.server}:${deploy.port}/

View File

@@ -0,0 +1,17 @@
#home di Java SDK
sdk.home=C:/Program Files/Java/jdk1.6.0_45
#home di weblogic server
weblogic.home=C:/Oracle/Middleware/wlserver_10.3
#home del progetto, deve puntare alla cartella mnp/FE/mnpdev
project.home=.
#Properties per il deploy dell'applicazione (admin server)
deploy.username=weblogic
deploy.username=weblogic
deploy.server=localhost
deploy.port=8001
deploy.url=t3://${deploy.server}:${deploy.port}/

View File

@@ -0,0 +1,18 @@
#home di Java SDK
sdk.home=C:/bea81/jdk142_04
#home di weblogic server
weblogic.home=C:/bea81/weblogic81
#home del progetto,
project.home=.
#Properties per il deploy dell'applicazione (admin server)
deploy.username=weblogic
deploy.server=localhost
deploy.port=8001
deploy.url=t3://${deploy.server}:${deploy.port}/

View File

@@ -0,0 +1,18 @@
#home di Java SDK
sdk.home=C:/programmi/bea81/jdk142_05
#home di weblogic server
weblogic.home=C:/Programmi/bea81/weblogic81
#home del progetto,
project.home=.
#Properties per il deploy dell'applicazione (admin server)
deploy.username=weblogic
deploy.server=localhost
deploy.port=8001
deploy.url=t3://${deploy.server}:${deploy.port}/

View File

@@ -0,0 +1,18 @@
#home di Java SDK
sdk.home=C:/Program Files/Java/jdk1.6.0_45
#home di weblogic server
weblogic.home=C:/WebLogicServer10.3.6/wlserver
#home del progetto, deve puntare alla cartella mnp/FE/mnpdev
project.home=.
#path delle librerie
mnp.lib.path=../mnp/ear/APP-INF/lib
#Properties per il deploy dell'applicazione (admin server)
deploy.username=weblogic
deploy.server=localhost
deploy.port=8001
deploy.url=t3://${deploy.server}:${deploy.port}/

View File

@@ -0,0 +1,17 @@
#home di Java SDK
sdk.home=C:/Java/jdk1.6.0_45
#home di weblogic server
weblogic.home=C:/Oracle/Middleware/wlserver_10.3
#home del progetto,
project.home=.
#Properties per il deploy dell'applicazione (admin server)
deploy.username=weblogic
deploy.username=weblogic
deploy.server=localhost
deploy.port=8001
deploy.url=t3://${deploy.server}:${deploy.port}/

View File

@@ -0,0 +1,17 @@
#home di Java SDK
sdk.home=C:/bea/jdk142_04
#home di weblogic server
weblogic.home=C:/bea/weblogic81
#home del progetto,
project.home=C:/progetti/mnp/FE/mnpdev/dbcgo
#Properties per il deploy dell'applicazione (admin server)
deploy.username=weblogic
deploy.username=weblogic
deploy.server=localhost
deploy.port=8001
deploy.url=t3://${deploy.server}:${deploy.port}/

View File

@@ -0,0 +1,19 @@
#home di Java SDK
sdk.home=C:/bea/jdk142_04
#home di weblogic server
weblogic.home=C:/bea/weblogic81
#home del progetto,
project.home=C:/progetti/mnp/FE/mnpdev/dbcgo
#Properties per il deploy dell'applicazione (admin server)
deploy.username=weblogic
deploy.username=weblogic
deploy.server=localhost
deploy.port=8001
deploy.url=t3://${deploy.server}:${deploy.port}/

View File

@@ -0,0 +1,15 @@
#home di Java SDK
sdk.home=C:/Program Files/Java/jdk1.6.0_45
#home di weblogic server
weblogic.home=C:/WebLogicServer10.3.6/wlserver
#home del progetto, deve puntare alla cartella mnp/FE/mnpdev
project.home=.
#Properties per il deploy dell'applicazione (admin server)
deploy.username=weblogic
deploy.server=localhost
deploy.port=8001
deploy.url=t3://${deploy.server}:${deploy.port}/