Showing
13 changed files
with
429 additions
and
0 deletions
server/base-starter/pom.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| 5 | + <modelVersion>4.0.0</modelVersion> | ||
| 6 | + | ||
| 7 | + <groupId>com.fedex.connect</groupId> | ||
| 8 | + <artifactId>base-starter</artifactId> | ||
| 9 | + <version>1.0.0</version> | ||
| 10 | + | ||
| 11 | + | ||
| 12 | +</project> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
server/biz-customer/pom.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | + | ||
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| 5 | + <modelVersion>4.0.0</modelVersion> | ||
| 6 | + | ||
| 7 | + <groupId>com.fedex.connect</groupId> | ||
| 8 | + <artifactId>biz-customer</artifactId> | ||
| 9 | + <version>1.0.0</version> | ||
| 10 | + <packaging>war</packaging> | ||
| 11 | + | ||
| 12 | + <name>biz-customer Maven Webapp</name> | ||
| 13 | + <!-- FIXME change it to the project's website --> | ||
| 14 | + <url>http://www.example.com</url> | ||
| 15 | + | ||
| 16 | + <properties> | ||
| 17 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| 18 | + <maven.compiler.source>8</maven.compiler.source> | ||
| 19 | + <maven.compiler.target>8</maven.compiler.target> | ||
| 20 | + </properties> | ||
| 21 | + | ||
| 22 | + <dependencies> | ||
| 23 | + <dependency> | ||
| 24 | + <groupId>junit</groupId> | ||
| 25 | + <artifactId>junit</artifactId> | ||
| 26 | + <version>4.13.1</version> | ||
| 27 | + <scope>test</scope> | ||
| 28 | + </dependency> | ||
| 29 | + </dependencies> | ||
| 30 | + | ||
| 31 | + <build> | ||
| 32 | + <finalName>biz-customer</finalName> | ||
| 33 | + <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> | ||
| 34 | + <plugins> | ||
| 35 | + <plugin> | ||
| 36 | + <artifactId>maven-clean-plugin</artifactId> | ||
| 37 | + <version>3.4.0</version> | ||
| 38 | + </plugin> | ||
| 39 | + <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging --> | ||
| 40 | + <plugin> | ||
| 41 | + <artifactId>maven-resources-plugin</artifactId> | ||
| 42 | + <version>3.3.1</version> | ||
| 43 | + </plugin> | ||
| 44 | + <plugin> | ||
| 45 | + <artifactId>maven-compiler-plugin</artifactId> | ||
| 46 | + <version>3.13.0</version> | ||
| 47 | + </plugin> | ||
| 48 | + <plugin> | ||
| 49 | + <artifactId>maven-surefire-plugin</artifactId> | ||
| 50 | + <version>3.3.0</version> | ||
| 51 | + </plugin> | ||
| 52 | + <plugin> | ||
| 53 | + <artifactId>maven-war-plugin</artifactId> | ||
| 54 | + <version>3.4.0</version> | ||
| 55 | + </plugin> | ||
| 56 | + <plugin> | ||
| 57 | + <artifactId>maven-install-plugin</artifactId> | ||
| 58 | + <version>3.1.2</version> | ||
| 59 | + </plugin> | ||
| 60 | + <plugin> | ||
| 61 | + <artifactId>maven-deploy-plugin</artifactId> | ||
| 62 | + <version>3.1.2</version> | ||
| 63 | + </plugin> | ||
| 64 | + </plugins> | ||
| 65 | + </pluginManagement> | ||
| 66 | + </build> | ||
| 67 | +</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<wls:weblogic-web-app | ||
| 3 | + xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app" | ||
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 5 | + xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app | ||
| 6 | + http://xmlns.oracle.com/weblogic/weblogic-web-app/1.4/weblogic-web-app.xsd"> | ||
| 7 | + <wls:context-root>/iclearconnect</wls:context-root> | ||
| 8 | + <wls:library-ref> | ||
| 9 | + <library-name>lib4iClearConnect</library-name> | ||
| 10 | + <specification-version>1.0</specification-version> | ||
| 11 | + </wls:library-ref> | ||
| 12 | +</wls:weblogic-web-app> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
server/common-dependencies/pom.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| 5 | + <modelVersion>4.0.0</modelVersion> | ||
| 6 | + | ||
| 7 | + <groupId>com.fedex.connect</groupId> | ||
| 8 | + <artifactId>common-dependencies</artifactId> | ||
| 9 | + <version>1.0.0</version> | ||
| 10 | + | ||
| 11 | + | ||
| 12 | +</project> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
server/kafka-cndc-server/pom.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | + | ||
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| 5 | + <modelVersion>4.0.0</modelVersion> | ||
| 6 | + | ||
| 7 | + <groupId>com.fedex.connect</groupId> | ||
| 8 | + <artifactId>kafka-cndc-server</artifactId> | ||
| 9 | + <version>1.0.0</version> | ||
| 10 | + <packaging>war</packaging> | ||
| 11 | + | ||
| 12 | + <name>kafka-cndc-server Maven Webapp</name> | ||
| 13 | + <!-- FIXME change it to the project's website --> | ||
| 14 | + <url>http://www.example.com</url> | ||
| 15 | + | ||
| 16 | + <properties> | ||
| 17 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| 18 | + <maven.compiler.source>8</maven.compiler.source> | ||
| 19 | + <maven.compiler.target>8</maven.compiler.target> | ||
| 20 | + </properties> | ||
| 21 | + | ||
| 22 | + <dependencies> | ||
| 23 | + <dependency> | ||
| 24 | + <groupId>junit</groupId> | ||
| 25 | + <artifactId>junit</artifactId> | ||
| 26 | + <version>4.13.1</version> | ||
| 27 | + <scope>test</scope> | ||
| 28 | + </dependency> | ||
| 29 | + </dependencies> | ||
| 30 | + | ||
| 31 | + <build> | ||
| 32 | + <finalName>kafka-cndc-server</finalName> | ||
| 33 | + <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> | ||
| 34 | + <plugins> | ||
| 35 | + <plugin> | ||
| 36 | + <artifactId>maven-clean-plugin</artifactId> | ||
| 37 | + <version>3.4.0</version> | ||
| 38 | + </plugin> | ||
| 39 | + <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging --> | ||
| 40 | + <plugin> | ||
| 41 | + <artifactId>maven-resources-plugin</artifactId> | ||
| 42 | + <version>3.3.1</version> | ||
| 43 | + </plugin> | ||
| 44 | + <plugin> | ||
| 45 | + <artifactId>maven-compiler-plugin</artifactId> | ||
| 46 | + <version>3.13.0</version> | ||
| 47 | + </plugin> | ||
| 48 | + <plugin> | ||
| 49 | + <artifactId>maven-surefire-plugin</artifactId> | ||
| 50 | + <version>3.3.0</version> | ||
| 51 | + </plugin> | ||
| 52 | + <plugin> | ||
| 53 | + <artifactId>maven-war-plugin</artifactId> | ||
| 54 | + <version>3.4.0</version> | ||
| 55 | + </plugin> | ||
| 56 | + <plugin> | ||
| 57 | + <artifactId>maven-install-plugin</artifactId> | ||
| 58 | + <version>3.1.2</version> | ||
| 59 | + </plugin> | ||
| 60 | + <plugin> | ||
| 61 | + <artifactId>maven-deploy-plugin</artifactId> | ||
| 62 | + <version>3.1.2</version> | ||
| 63 | + </plugin> | ||
| 64 | + </plugins> | ||
| 65 | + </pluginManagement> | ||
| 66 | + </build> | ||
| 67 | +</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<wls:weblogic-web-app | ||
| 3 | + xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app" | ||
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 5 | + xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app | ||
| 6 | + http://xmlns.oracle.com/weblogic/weblogic-web-app/1.4/weblogic-web-app.xsd"> | ||
| 7 | + <wls:context-root>/iclearconnect</wls:context-root> | ||
| 8 | + <wls:library-ref> | ||
| 9 | + <library-name>lib4iClearConnect</library-name> | ||
| 10 | + <specification-version>1.0</specification-version> | ||
| 11 | + </wls:library-ref> | ||
| 12 | +</wls:weblogic-web-app> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
server/lib4iClearConnect/pom.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | + | ||
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| 5 | + <modelVersion>4.0.0</modelVersion> | ||
| 6 | + | ||
| 7 | + <parent> | ||
| 8 | + <groupId>org.springframework.boot</groupId> | ||
| 9 | + <artifactId>spring-boot-starter-parent</artifactId> | ||
| 10 | + <version>2.2.5.RELEASE</version> | ||
| 11 | + <relativePath/> | ||
| 12 | + </parent> | ||
| 13 | + | ||
| 14 | + <groupId>com.fedex.connect</groupId> | ||
| 15 | + <artifactId>lib4iClearConnect</artifactId> | ||
| 16 | + <version>1.0.0</version> | ||
| 17 | + <packaging>war</packaging> | ||
| 18 | + | ||
| 19 | + <name>lib4iClearConnect Maven Webapp</name> | ||
| 20 | + <!-- FIXME change it to the project's website --> | ||
| 21 | + <url>http://www.example.com</url> | ||
| 22 | + | ||
| 23 | + <properties> | ||
| 24 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| 25 | + <maven.compiler.source>8</maven.compiler.source> | ||
| 26 | + <maven.compiler.target>8</maven.compiler.target> | ||
| 27 | + </properties> | ||
| 28 | + | ||
| 29 | + <dependencies> | ||
| 30 | + <dependency> | ||
| 31 | + <groupId>junit</groupId> | ||
| 32 | + <artifactId>junit</artifactId> | ||
| 33 | + <version>4.13.1</version> | ||
| 34 | + <scope>test</scope> | ||
| 35 | + </dependency> | ||
| 36 | + </dependencies> | ||
| 37 | + | ||
| 38 | + <build> | ||
| 39 | + <finalName>lib4iClearConnect</finalName> | ||
| 40 | + <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> | ||
| 41 | + <plugins> | ||
| 42 | + <plugin> | ||
| 43 | + <artifactId>maven-clean-plugin</artifactId> | ||
| 44 | + <version>3.4.0</version> | ||
| 45 | + </plugin> | ||
| 46 | + <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging --> | ||
| 47 | + <plugin> | ||
| 48 | + <artifactId>maven-resources-plugin</artifactId> | ||
| 49 | + <version>3.3.1</version> | ||
| 50 | + </plugin> | ||
| 51 | + <plugin> | ||
| 52 | + <artifactId>maven-compiler-plugin</artifactId> | ||
| 53 | + <version>3.13.0</version> | ||
| 54 | + </plugin> | ||
| 55 | + <plugin> | ||
| 56 | + <artifactId>maven-surefire-plugin</artifactId> | ||
| 57 | + <version>3.3.0</version> | ||
| 58 | + </plugin> | ||
| 59 | + <plugin> | ||
| 60 | + <artifactId>maven-war-plugin</artifactId> | ||
| 61 | + <version>3.4.0</version> | ||
| 62 | + </plugin> | ||
| 63 | + <plugin> | ||
| 64 | + <artifactId>maven-install-plugin</artifactId> | ||
| 65 | + <version>3.1.2</version> | ||
| 66 | + </plugin> | ||
| 67 | + <plugin> | ||
| 68 | + <artifactId>maven-deploy-plugin</artifactId> | ||
| 69 | + <version>3.1.2</version> | ||
| 70 | + </plugin> | ||
| 71 | + </plugins> | ||
| 72 | + </pluginManagement> | ||
| 73 | + </build> | ||
| 74 | +</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<web-app | ||
| 3 | + version="4.0" | ||
| 4 | + xmlns="http://xmlns.jcp.org/xml/ns/javaee" | ||
| 5 | + xmlns:javaee="http://xmlns.jcp.org/xml/ns/javaee" | ||
| 6 | + xmlns:xml="http://www.w3.org/XML/1998/namespace" | ||
| 7 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 8 | + xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> | ||
| 9 | + <display-name>Archetype Created Web Application</display-name> | ||
| 10 | +</web-app> |
server/manager-server/pom.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | + | ||
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| 5 | + <modelVersion>4.0.0</modelVersion> | ||
| 6 | + | ||
| 7 | + <groupId>com.fedex.connect</groupId> | ||
| 8 | + <artifactId>manager-server</artifactId> | ||
| 9 | + <version>1.0.0</version> | ||
| 10 | + <packaging>war</packaging> | ||
| 11 | + | ||
| 12 | + <name>manager-server Maven Webapp</name> | ||
| 13 | + <!-- FIXME change it to the project's website --> | ||
| 14 | + <url>http://www.example.com</url> | ||
| 15 | + | ||
| 16 | + <properties> | ||
| 17 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| 18 | + <maven.compiler.source>8</maven.compiler.source> | ||
| 19 | + <maven.compiler.target>8</maven.compiler.target> | ||
| 20 | + </properties> | ||
| 21 | + | ||
| 22 | + <dependencies> | ||
| 23 | + <dependency> | ||
| 24 | + <groupId>junit</groupId> | ||
| 25 | + <artifactId>junit</artifactId> | ||
| 26 | + <version>4.13.1</version> | ||
| 27 | + <scope>test</scope> | ||
| 28 | + </dependency> | ||
| 29 | + </dependencies> | ||
| 30 | + | ||
| 31 | + <build> | ||
| 32 | + <finalName>manager-server</finalName> | ||
| 33 | + <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> | ||
| 34 | + <plugins> | ||
| 35 | + <plugin> | ||
| 36 | + <artifactId>maven-clean-plugin</artifactId> | ||
| 37 | + <version>3.4.0</version> | ||
| 38 | + </plugin> | ||
| 39 | + <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging --> | ||
| 40 | + <plugin> | ||
| 41 | + <artifactId>maven-resources-plugin</artifactId> | ||
| 42 | + <version>3.3.1</version> | ||
| 43 | + </plugin> | ||
| 44 | + <plugin> | ||
| 45 | + <artifactId>maven-compiler-plugin</artifactId> | ||
| 46 | + <version>3.13.0</version> | ||
| 47 | + </plugin> | ||
| 48 | + <plugin> | ||
| 49 | + <artifactId>maven-surefire-plugin</artifactId> | ||
| 50 | + <version>3.3.0</version> | ||
| 51 | + </plugin> | ||
| 52 | + <plugin> | ||
| 53 | + <artifactId>maven-war-plugin</artifactId> | ||
| 54 | + <version>3.4.0</version> | ||
| 55 | + </plugin> | ||
| 56 | + <plugin> | ||
| 57 | + <artifactId>maven-install-plugin</artifactId> | ||
| 58 | + <version>3.1.2</version> | ||
| 59 | + </plugin> | ||
| 60 | + <plugin> | ||
| 61 | + <artifactId>maven-deploy-plugin</artifactId> | ||
| 62 | + <version>3.1.2</version> | ||
| 63 | + </plugin> | ||
| 64 | + </plugins> | ||
| 65 | + </pluginManagement> | ||
| 66 | + </build> | ||
| 67 | +</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<wls:weblogic-web-app | ||
| 3 | + xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app" | ||
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 5 | + xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app | ||
| 6 | + http://xmlns.oracle.com/weblogic/weblogic-web-app/1.4/weblogic-web-app.xsd"> | ||
| 7 | + <wls:context-root>/iclearconnect</wls:context-root> | ||
| 8 | + <wls:library-ref> | ||
| 9 | + <library-name>lib4iClearConnect</library-name> | ||
| 10 | + <specification-version>1.0</specification-version> | ||
| 11 | + </wls:library-ref> | ||
| 12 | +</wls:weblogic-web-app> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
server/task-schedule/pom.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | + | ||
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| 5 | + <modelVersion>4.0.0</modelVersion> | ||
| 6 | + | ||
| 7 | + <groupId>com.fedex.connect</groupId> | ||
| 8 | + <artifactId>task-schedule</artifactId> | ||
| 9 | + <version>1.0.0</version> | ||
| 10 | + <packaging>war</packaging> | ||
| 11 | + | ||
| 12 | + <name>task-schedule Maven Webapp</name> | ||
| 13 | + <!-- FIXME change it to the project's website --> | ||
| 14 | + <url>http://www.example.com</url> | ||
| 15 | + | ||
| 16 | + <properties> | ||
| 17 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| 18 | + <maven.compiler.source>8</maven.compiler.source> | ||
| 19 | + <maven.compiler.target>8</maven.compiler.target> | ||
| 20 | + </properties> | ||
| 21 | + | ||
| 22 | + <dependencies> | ||
| 23 | + <dependency> | ||
| 24 | + <groupId>junit</groupId> | ||
| 25 | + <artifactId>junit</artifactId> | ||
| 26 | + <version>4.13.1</version> | ||
| 27 | + <scope>test</scope> | ||
| 28 | + </dependency> | ||
| 29 | + </dependencies> | ||
| 30 | + | ||
| 31 | + <build> | ||
| 32 | + <finalName>task-schedule</finalName> | ||
| 33 | + <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> | ||
| 34 | + <plugins> | ||
| 35 | + <plugin> | ||
| 36 | + <artifactId>maven-clean-plugin</artifactId> | ||
| 37 | + <version>3.4.0</version> | ||
| 38 | + </plugin> | ||
| 39 | + <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging --> | ||
| 40 | + <plugin> | ||
| 41 | + <artifactId>maven-resources-plugin</artifactId> | ||
| 42 | + <version>3.3.1</version> | ||
| 43 | + </plugin> | ||
| 44 | + <plugin> | ||
| 45 | + <artifactId>maven-compiler-plugin</artifactId> | ||
| 46 | + <version>3.13.0</version> | ||
| 47 | + </plugin> | ||
| 48 | + <plugin> | ||
| 49 | + <artifactId>maven-surefire-plugin</artifactId> | ||
| 50 | + <version>3.3.0</version> | ||
| 51 | + </plugin> | ||
| 52 | + <plugin> | ||
| 53 | + <artifactId>maven-war-plugin</artifactId> | ||
| 54 | + <version>3.4.0</version> | ||
| 55 | + </plugin> | ||
| 56 | + <plugin> | ||
| 57 | + <artifactId>maven-install-plugin</artifactId> | ||
| 58 | + <version>3.1.2</version> | ||
| 59 | + </plugin> | ||
| 60 | + <plugin> | ||
| 61 | + <artifactId>maven-deploy-plugin</artifactId> | ||
| 62 | + <version>3.1.2</version> | ||
| 63 | + </plugin> | ||
| 64 | + </plugins> | ||
| 65 | + </pluginManagement> | ||
| 66 | + </build> | ||
| 67 | +</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<wls:weblogic-web-app | ||
| 3 | + xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app" | ||
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| 5 | + xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app | ||
| 6 | + http://xmlns.oracle.com/weblogic/weblogic-web-app/1.4/weblogic-web-app.xsd"> | ||
| 7 | + <wls:context-root>/iclearconnect</wls:context-root> | ||
| 8 | + <wls:library-ref> | ||
| 9 | + <library-name>lib4iClearConnect</library-name> | ||
| 10 | + <specification-version>1.0</specification-version> | ||
| 11 | + </wls:library-ref> | ||
| 12 | +</wls:weblogic-web-app> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment