ks-lum-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kuali.student.api</groupId> <artifactId>ks-lum-api</artifactId> <version>2.0.3-cm</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.kuali.student.api</groupId> <artifactId>ks-api</artifactId> <version>2.0.3-cm</version> </parent> <artifactId>ks-lum-api</artifactId> <name>KS LUM API</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ks-core-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.google.code.gwtx</groupId> <artifactId>gwtx</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-java2ws-plugin</artifactId> <executions> <execution> <id>lo-wsdl</id> <phase>${ks.java2ws.phase}</phase> <configuration> <className>org.kuali.student.r2.lum.lo.service.LearningObjectiveService</className> <serviceName>LoService</serviceName> <targetNameSpace>http://student.kuali.org/wsdl/lo</targetNameSpace> </configuration> <goals> <goal>java2ws</goal> </goals> </execution> <execution> <id>lu-wsdl</id> <phase>${ks.java2ws.phase}</phase> <configuration> <className>org.kuali.student.r2.lum.clu.service.CluService</className> <serviceName>CluService</serviceName> <targetNameSpace>http://student.kuali.org/wsdl/clu</targetNameSpace> </configuration> <goals> <goal>java2ws</goal> </goals> </execution> <execution> <id>lrc-wsdl</id> <phase>${ks.java2ws.phase}</phase> <configuration> <className>org.kuali.student.r2.lum.lrc.service.LRCService</className> <serviceName>LrcService</serviceName> <targetNameSpace>http://student.kuali.org/wsdl/lrc</targetNameSpace> </configuration> <goals> <goal>java2ws</goal> </goals> </execution> <execution> <id>program-wsdl</id> <phase>${ks.java2ws.phase}</phase> <configuration> <className>org.kuali.student.r2.lum.program.service.ProgramService</className> <serviceName>ProgramService</serviceName> <targetNameSpace>http://student.kuali.org/wsdl/program</targetNameSpace> </configuration> <goals> <goal>java2ws</goal> </goals> </execution> </executions> <!-- CXF does classloading does not agree with Maven3, requiring the ks-core-api dependency to be duplicated here inside the plugin configuration --> <!-- https://cwiki.apache.org/MAVEN/maven-3x-class-loading.html --> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ks-core-api</artifactId> <version>${project.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>