Skip to content

Commit 40d63b9

Browse files
committed
About the test, we update String Vowel Test
1 parent 50c63df commit 40d63b9

74 files changed

Lines changed: 1675 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

spring-remoting-modules/.idea/.gitignore

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spring-remoting-modules/.idea/checkstyle-idea.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spring-remoting-modules/.idea/compiler.xml

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spring-remoting-modules/.idea/encodings.xml

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spring-remoting-modules/.idea/jarRepositories.xml

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spring-remoting-modules/.idea/jpa-buddy.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spring-remoting-modules/.idea/misc.xml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spring-remoting-modules/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spring-remoting-modules/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## Spring Remoting
2+
3+
This module contains articles about Spring Remoting
4+
5+
6+
### Overview
7+
This Maven project contains the Java source code for various modules used in the Spring Remoting series of articles.
8+
9+
### Building the Project
10+
You can build the project using Maven inside your IDE or from the command line:
11+
```
12+
mvn clean install
13+
```

spring-remoting-modules/pom.xml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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+
<artifactId>spring-remoting-modules</artifactId>
7+
<version>1.0-SNAPSHOT</version>
8+
<name>spring-remoting-modules</name>
9+
<packaging>pom</packaging>
10+
<description>Parent for all projects related to Spring Remoting, except remoting-hessian-burlap</description>
11+
<!-- remoting-hessian-burlap needs to stick to spring-boot-1, -->
12+
<!-- some classes were removed in spring 5 -->
13+
14+
<parent>
15+
<groupId>com.ossez</groupId>
16+
<artifactId>parent-boot-2</artifactId>
17+
<version>0.0.2-SNAPSHOT</version>
18+
<relativePath>parent-boot-2</relativePath>
19+
</parent>
20+
21+
<modules>
22+
<!-- <module>remoting-hessian-burlap</module>-->
23+
<module>remoting-http</module>
24+
<!-- <module>remoting-amqp</module>-->
25+
<module>remoting-jms</module>
26+
<!-- <module>remoting-rmi</module>-->
27+
</modules>
28+
29+
<dependencyManagement>
30+
<dependencies>
31+
<!-- companion modules -->
32+
<dependency>
33+
<groupId>${project.groupId}</groupId>
34+
<artifactId>api</artifactId>
35+
<version>${project.version}</version>
36+
</dependency>
37+
</dependencies>
38+
</dependencyManagement>
39+
40+
<build>
41+
<plugins>
42+
<plugin>
43+
<groupId>org.apache.maven.plugins</groupId>
44+
<artifactId>maven-compiler-plugin</artifactId>
45+
<version>${maven-compiler-plugin.version}</version>
46+
<configuration>
47+
<source>${maven.compiler.source}</source>
48+
<target>${maven.compiler.target}</target>
49+
</configuration>
50+
</plugin>
51+
</plugins>
52+
</build>
53+
<properties>
54+
<maven.compiler.source>11</maven.compiler.source>
55+
<maven.compiler.target>11</maven.compiler.target>
56+
</properties>
57+
58+
</project>

0 commit comments

Comments
 (0)