| .gitignore | ●●●●● patch | view | raw | blame | history | |
| hbbohua-water-domain/pom.xml | ●●●●● patch | view | raw | blame | history | |
| hbbohua-water-service/pom.xml | ●●●●● patch | view | raw | blame | history | |
| hbbohua-water-web/pom.xml | ●●●●● patch | view | raw | blame | history | |
| hbbohua-water-webapp/pom.xml | ●●●●● patch | view | raw | blame | history | |
| hbbohua-water-webapp/src/main/webapp/WEB-INF/web.xml | ●●●●● patch | view | raw | blame | history | |
| hbbohua-water-webapp/src/main/webapp/index.jsp | ●●●●● patch | view | raw | blame | history | |
| pom.xml | ●●●●● patch | view | raw | blame | history |
.gitignore
New file @@ -0,0 +1,102 @@ ########### Mac **/.DS_Store ########### maven target/ **/target/ pom.xml.tag pom.xml.releaseBackup pom.xml.versionsBackup pom.xml.next release.properties dependency-reduced-pom.xml buildNumber.properties .mvn/timing.properties ##########Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion *.iml ## Directory-based project format: .idea/ # if you remove the above rule, at least ignore the following: # User-specific stuff: # .idea/workspace.xml # .idea/tasks.xml # .idea/dictionaries # Sensitive or high-churn files: # .idea/dataSources.ids # .idea/dataSources.xml # .idea/sqlDataSources.xml # .idea/dynamic.xml # .idea/uiDesigner.xml # Gradle: # .idea/gradle.xml # .idea/libraries # Mongo Explorer plugin: # .idea/mongoSettings.xml ## File-based project format: *.ipr *.iws ## Plugin-specific files: # IntelliJ /out/ # mpeltonen/sbt-idea plugin .idea_modules/ # JIRA plugin atlassian-ide-plugin.xml # Crashlytics plugin (for Android Studio and IntelliJ) com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties ################### Eclipse *.pydevproject .metadata .gradle bin/ tmp/ *.tmp *.bak *.swp *~.nib local.properties .settings/ .loadpath # Eclipse Core .project # External tool builders .externalToolBuilders/ # Locally stored "Eclipse launch configurations" *.launch # CDT-specific .cproject # JDT-specific (Eclipse Java Development Tools) .classpath # Java annotation processor (APT) .factorypath # PDT-specific .buildpath # sbteclipse plugin .target # TeXlipse plugin .texlipse hbbohua-water-domain/pom.xml
New file @@ -0,0 +1,22 @@ <?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>hbbohua-water</artifactId> <groupId>com.hbbohua</groupId> <version>1.8.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>hbbohua-water-domain</artifactId> <dependencies> <dependency> <groupId>com.ooxsoft.ecsi</groupId> <artifactId>ooxsoft-ecsi-domain</artifactId> <version>${project.parent.version}</version> </dependency> </dependencies> </project> hbbohua-water-service/pom.xml
New file @@ -0,0 +1,26 @@ <?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>hbbohua-water</artifactId> <groupId>com.hbbohua</groupId> <version>1.8.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>hbbohua-water-service</artifactId> <dependencies> <dependency> <groupId>com.hbbohua</groupId> <artifactId>hbbohua-water-domain</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>com.ooxsoft.ecsi</groupId> <artifactId>ooxsoft-ecsi-service</artifactId> <version>${project.parent.version}</version> </dependency> </dependencies> </project> hbbohua-water-web/pom.xml
New file @@ -0,0 +1,26 @@ <?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>hbbohua-water</artifactId> <groupId>com.hbbohua</groupId> <version>1.8.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>hbbohua-water-web</artifactId> <dependencies> <dependency> <groupId>com.hbbohua</groupId> <artifactId>hbbohua-water-service</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>com.ooxsoft.ecsi</groupId> <artifactId>ooxsoft-ecsi-web</artifactId> <version>${project.parent.version}</version> </dependency> </dependencies> </project> hbbohua-water-webapp/pom.xml
New file @@ -0,0 +1,71 @@ <?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>hbbohua-water</artifactId> <groupId>com.hbbohua</groupId> <version>1.8.0-SNAPSHOT</version> </parent> <artifactId>hbbohua-water-webapp</artifactId> <packaging>war</packaging> <description>最终宿主应用程序(Web App)</description> <url>http://water.hbbohua.com</url> <dependencies> <dependency> <groupId>com.hbbohua</groupId> <artifactId>hbbohua-water-web</artifactId> <version>${project.parent.version}</version> </dependency> <!--选配组件===========================================--> <!--JAX-RS RESTful Web Service--> <dependency> <groupId>com.ooxsoft.platform</groupId> <artifactId>ooxsoft-platform-web-rest-cxf</artifactId> <version>${project.parent.version}</version> </dependency> <!--二级缓存,网格计算,机器学习--> <dependency> <groupId>com.ooxsoft.objekt</groupId> <artifactId>ooxsoft-objekt-ignite</artifactId> <version>${project.parent.version}</version> </dependency> <!--Ignite分布式 Web Session--> <dependency> <groupId>com.ooxsoft.objekt</groupId> <artifactId>ooxsoft-objekt-servlet-ignite</artifactId> <version>${project.parent.version}</version> </dependency> <!--关系数据库连接池--> <dependency> <groupId>com.ooxsoft.objekt</groupId> <artifactId>ooxsoft-objekt-hikaricp</artifactId> <version>${project.parent.version}</version> </dependency> <!--关系数据库适配器--> <dependency> <groupId>com.ooxsoft.objekt</groupId> <artifactId>ooxsoft-objekt-mariadb</artifactId> <version>${project.parent.version}</version> </dependency> <!--日志--> <dependency> <groupId>com.ooxsoft.objekt</groupId> <artifactId>ooxsoft-objekt-logback</artifactId> <version>${project.parent.version}</version> </dependency> <!--选配组件结束=======================================--> </dependencies> <build> <finalName>hbbohua-water-webapp</finalName> </build> <properties> <maven.deploy.skip>true</maven.deploy.skip> </properties> </project> hbbohua-water-webapp/src/main/webapp/WEB-INF/web.xml
New file @@ -0,0 +1,7 @@ <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app> <display-name>Archetype Created Web Application</display-name> </web-app> hbbohua-water-webapp/src/main/webapp/index.jsp
New file @@ -0,0 +1,5 @@ <html> <body> <h2>Hello World!</h2> </body> </html> pom.xml
New file @@ -0,0 +1,23 @@ <?xml version="1.0" encoding="UTF-8"?> <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> <packaging>pom</packaging> <parent> <groupId>com.ooxsoft.ecsi</groupId> <artifactId>ooxsoft-ecsi</artifactId> <version>1.8.0-SNAPSHOT</version> </parent> <groupId>com.hbbohua</groupId> <artifactId>hbbohua-water</artifactId> <modules> <module>hbbohua-water-domain</module> <module>hbbohua-water-service</module> <module>hbbohua-water-web</module> <module>hbbohua-water-webapp</module> </modules> </project>