Subversion Repositories bacoAlunos

Rev

Rev 767 | Rev 798 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
292 jmachado 1
<?xml version="1.0" encoding="UTF-8"?>
2
<project name="estgweb-import" basedir="." default="help">
3
 
4
 
5
    <import file="build.xml"/>
6
 
7
 
8
    <target name="courses">
767 jmachado 9
        <java classname="pt.estgp.estgweb.services.sigesimports.ImportCourseService" classpath="${build.dir.classes}" classpathref="pathToToolsLib">
10
            <arg value="201314"/>
11
        </java>
292 jmachado 12
    </target>
768 jmachado 13
    <target name="sincronizeunits">
14
        <java classname="pt.estgp.estgweb.services.sigesimports.SincronizeLastYearCourseUnitProgramsService" classpath="${build.dir.classes}" classpathref="pathToToolsLib">
15
            <arg value="201314"/>
16
        </java>
17
    </target>
292 jmachado 18
    <target name="teachers">
19
        <java classname="pt.estgp.estgweb.services.sigesimports.ImportTeachersService" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>
20
    </target>
21
    <target name="students">
22
        <java classname="pt.estgp.estgweb.services.sigesimports.ImportStudentsService" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>
23
    </target>
490 jmachado 24
    <target name="grades">
25
        <java classname="pt.estgp.estgweb.services.sigesimports.ImportGradesService" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>
26
    </target>
319 jmachado 27
    <target name="jobs">
490 jmachado 28
        <java classname="pt.estgp.estgweb.services.jobs.JobDeamon" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>
319 jmachado 29
    </target>
358 jmachado 30
    <target name="summaries">
31
        <java classname="pt.estgp.estgweb.services.sigesimports.ImportSumaries" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>
32
    </target>
377 jmachado 33
    <target name="setAreas">
34
        <java fork="true" classname="pt.estgp.estgweb.services.courses.SetUserArea" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>
35
    </target>
381 jmachado 36
    <target name="setOfficeExtMainArea">
37
        <java fork="true" classname="pt.estgp.estgweb.services.profile.SetUserAreaOfficeExtFromCSV" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>
38
    </target>
731 jmachado 39
 
40
 
41
    <target name="importPrograms">
42
        <java fork="true" classname="pt.estgp.estgweb.domain.CourseUnitProgramImpl" classpath="${build.dir.classes}" classpathref="pathToToolsLib">
763 jmachado 43
            <arg value="fichas/DC - 10.jan.13.xml"/>
732 jmachado 44
            <arg value="true"/>
763 jmachado 45
            <arg value="false"/>
731 jmachado 46
        </java>
47
    </target>
292 jmachado 48
</project>