Skip to content

Commit 47f960c

Browse files
Version 2.9.0
2 parents bb3aab4 + 765f19c commit 47f960c

File tree

21 files changed

+1892
-1737
lines changed

21 files changed

+1892
-1737
lines changed

pom.xml

+673-288
Large diffs are not rendered by default.

sm-core-model/pom.xml

+161-232
Original file line numberDiff line numberDiff line change
@@ -1,236 +1,165 @@
11
<?xml version="1.0"?>
22
<project
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4-
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5-
<modelVersion>4.0.0</modelVersion>
6-
7-
8-
<!-- <parent>
9-
<groupId>org.springframework.boot</groupId>
10-
<artifactId>spring-boot-starter-parent</artifactId>
11-
<version>1.5.18.RELEASE</version>
12-
</parent>
13-
<version>2.9.0</version>
14-
<groupId>com.shopizer</groupId> -->
15-
16-
<parent> <groupId>com.shopizer</groupId> <artifactId>shopizer</artifactId>
17-
<version>2.9.0</version> </parent>
18-
19-
20-
<artifactId>sm-core-model</artifactId>
21-
<description>sm-core-modules is used for create new external modules implementation deployed in maven.</description>
22-
<packaging>jar</packaging>
23-
<name>sm-core-model</name>
24-
<url>http://www.shopizer.com</url>
25-
26-
<licenses>
27-
<license>
28-
<name>Apache License, Version 2.0</name>
29-
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
30-
</license>
31-
</licenses>
32-
33-
<developers>
34-
<developer>
35-
<name>Shopizer Team</name>
36-
<email>team@shopizer.com</email>
37-
<organization>Shopizer</organization>
38-
<organizationUrl>http://www.shopizer.com</organizationUrl>
39-
</developer>
40-
</developers>
41-
42-
<properties>
43-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44-
<maven.compiler.source>1.8</maven.compiler.source>
45-
<maven.compiler.target>1.8</maven.compiler.target>
46-
<simple-json-version>1.1.1</simple-json-version>
47-
<commons-fileupload>1.3.3</commons-fileupload>
48-
<commons-lang3.version>3.5</commons-lang3.version>
49-
<commons-io.version>2.5</commons-io.version>
50-
<jackson-version-databind>2.9.10.1</jackson-version-databind>
51-
<jackson-version>2.9.9</jackson-version>
52-
</properties>
53-
54-
<dependencies>
55-
56-
<!-- Spring Data JPA -->
57-
<dependency>
58-
<groupId>org.springframework.boot</groupId>
59-
<artifactId>spring-boot-starter-data-jpa</artifactId>
60-
</dependency>
61-
62-
<!-- For transient Multipart File only -->
63-
<dependency>
64-
<groupId>org.springframework</groupId>
65-
<artifactId>spring-webmvc</artifactId>
66-
</dependency>
67-
68-
69-
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
70-
<dependency>
71-
<groupId>org.apache.commons</groupId>
72-
<artifactId>commons-lang3</artifactId>
73-
<version>${commons-lang3.version}</version>
74-
</dependency>
75-
76-
77-
<!-- http://mvnrepository.com/artifact/org.hibernate/hibernate-validator -->
78-
<dependency>
79-
<groupId>org.hibernate</groupId>
80-
<artifactId>hibernate-validator</artifactId>
81-
</dependency>
82-
83-
<!-- http://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
84-
<dependency>
85-
<groupId>com.googlecode.json-simple</groupId>
86-
<artifactId>json-simple</artifactId>
87-
<version>${simple-json-version}</version>
88-
</dependency>
89-
90-
<!-- http://mvnrepository.com/artifact/commons-io/commons-io -->
91-
<dependency>
92-
<groupId>commons-io</groupId>
93-
<artifactId>commons-io</artifactId>
94-
<version>${commons-io.version}</version>
95-
</dependency>
96-
97-
98-
<!-- http://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
99-
<dependency>
100-
<groupId>commons-fileupload</groupId>
101-
<artifactId>commons-fileupload</artifactId>
102-
<version>${commons-fileupload}</version>
103-
</dependency>
104-
105-
<!-- http://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
106-
<dependency>
107-
<groupId>com.fasterxml.jackson.core</groupId>
108-
<artifactId>jackson-core</artifactId>
109-
<version>${jackson-version}</version>
110-
</dependency>
111-
112-
<!-- Jackson JSON Processor -->
113-
<dependency>
114-
<groupId>com.fasterxml.jackson.core</groupId>
115-
<artifactId>jackson-databind</artifactId>
116-
<version>${jackson-version-databind}</version>
117-
</dependency>
118-
119-
<dependency>
120-
<groupId>com.fasterxml.jackson.core</groupId>
121-
<artifactId>jackson-core</artifactId>
122-
<version>${jackson-version}</version>
123-
</dependency>
124-
125-
<dependency>
126-
<groupId>com.fasterxml.jackson.core</groupId>
127-
<artifactId>jackson-annotations</artifactId>
128-
<version>${jackson-version}</version>
129-
</dependency>
130-
131-
132-
<!-- https://mvnrepository.com/artifact/org.springframework.social/ spring-social-core -->
133-
<dependency>
134-
<groupId>org.springframework.social</groupId>
135-
<artifactId>spring-social-core</artifactId>
136-
</dependency>
137-
138-
</dependencies>
139-
140-
<build>
141-
<plugins>
142-
<!-- this avoids annoying eclipse error -->
143-
<plugin>
144-
<groupId>org.apache.maven.plugins</groupId>
145-
<artifactId>maven-compiler-plugin</artifactId>
146-
<configuration>
147-
<source>${maven.compiler.source}</source>
148-
<target>${maven.compiler.target}</target>
149-
</configuration>
150-
</plugin>
151-
<!--OSSRH -->
152-
<plugin>
153-
<groupId>org.sonatype.plugins</groupId>
154-
<artifactId>nexus-staging-maven-plugin</artifactId>
155-
<version>1.6.7</version>
156-
<extensions>true</extensions>
157-
<configuration>
158-
<serverId>ossrh</serverId>
159-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
160-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
161-
</configuration>
162-
</plugin>
163-
<!--OSSRH -->
164-
<plugin>
165-
<groupId>org.apache.maven.plugins</groupId>
166-
<artifactId>maven-release-plugin</artifactId>
167-
<version>2.5.3</version>
168-
<configuration>
169-
<autoVersionSubmodules>true</autoVersionSubmodules>
170-
<useReleaseProfile>false</useReleaseProfile>
171-
<releaseProfiles>release</releaseProfiles>
172-
<goals>deploy</goals>
173-
</configuration>
174-
</plugin>
175-
<!--OSSRH -->
176-
<plugin>
177-
<groupId>org.apache.maven.plugins</groupId>
178-
<artifactId>maven-source-plugin</artifactId>
179-
<executions>
180-
<execution>
181-
<id>attach-sources</id>
182-
<goals>
183-
<goal>jar-no-fork</goal>
184-
</goals>
185-
</execution>
186-
</executions>
187-
</plugin>
188-
<!--OSSRH -->
189-
<plugin>
190-
<groupId>org.apache.maven.plugins</groupId>
191-
<artifactId>maven-javadoc-plugin</artifactId>
192-
<executions>
193-
<execution>
194-
<id>attach-javadocs</id>
195-
<goals>
196-
<goal>jar</goal>
197-
</goals>
198-
</execution>
199-
</executions>
200-
</plugin>
201-
<!-- OSSRH -->
202-
<!-- <plugin>
203-
<groupId>org.apache.maven.plugins</groupId>
204-
<artifactId>maven-gpg-plugin</artifactId>
205-
<version>1.5</version>
206-
<executions>
207-
<execution>
208-
<id>sign-artifacts</id>
209-
<phase>verify</phase>
210-
<goals>
211-
<goal>sign</goal>
212-
</goals>
213-
</execution>
214-
</executions>
215-
</plugin> -->
216-
</plugins>
217-
</build>
218-
219-
<distributionManagement>
220-
<snapshotRepository>
221-
<id>ossrh</id>
222-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
223-
</snapshotRepository>
224-
<repository>
225-
<id>ossrh</id>
226-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
227-
</repository>
228-
</distributionManagement>
229-
230-
<scm>
231-
<connection>scm:git:git://github.com:shopizer-ecommerce/shopizer-sm-core-model.git</connection>
232-
<developerConnection>scm:git:ssh://github.com:shopizer-ecommerce/shopizer-sm-core-model.git</developerConnection>
233-
<url>https://github.com/shopizer-ecommerce/shopizer-sm-core-model</url>
234-
</scm>
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>com.shopizer</groupId>
9+
<artifactId>shopizer</artifactId>
10+
<version>2.9.0</version>
11+
</parent>
12+
13+
<artifactId>sm-core-model</artifactId>
14+
<description>sm-core-modules is used for create new external modules implementation deployed in
15+
maven.
16+
</description>
17+
<packaging>jar</packaging>
18+
<name>sm-core-model</name>
19+
<url>http://www.shopizer.com</url>
20+
21+
<scm>
22+
<connection>scm:git:git://github.com:shopizer-ecommerce/shopizer-sm-core-model.git</connection>
23+
<developerConnection>scm:git:ssh://github.com:shopizer-ecommerce/shopizer-sm-core-model.git
24+
</developerConnection>
25+
<url>https://github.com/shopizer-ecommerce/shopizer-sm-core-model</url>
26+
</scm>
27+
28+
<distributionManagement>
29+
<snapshotRepository>
30+
<id>ossrh</id>
31+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
32+
</snapshotRepository>
33+
<repository>
34+
<id>ossrh</id>
35+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
36+
</repository>
37+
</distributionManagement>
38+
39+
<licenses>
40+
<license>
41+
<name>Apache License, Version 2.0</name>
42+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
43+
</license>
44+
</licenses>
45+
46+
<developers>
47+
<developer>
48+
<name>Shopizer Team</name>
49+
<email>team@shopizer.com</email>
50+
<organization>Shopizer</organization>
51+
<organizationUrl>http://www.shopizer.com</organizationUrl>
52+
</developer>
53+
</developers>
54+
55+
<dependencies>
56+
57+
<!-- Spring Data JPA -->
58+
<dependency>
59+
<groupId>org.springframework.boot</groupId>
60+
<artifactId>spring-boot-starter-data-jpa</artifactId>
61+
</dependency>
62+
63+
<!-- For transient Multipart File only -->
64+
<dependency>
65+
<groupId>org.springframework</groupId>
66+
<artifactId>spring-webmvc</artifactId>
67+
</dependency>
68+
69+
<!-- http://mvnrepository.com/artifact/org.hibernate/hibernate-validator -->
70+
<dependency>
71+
<groupId>org.hibernate</groupId>
72+
<artifactId>hibernate-validator</artifactId>
73+
</dependency>
74+
75+
<!-- http://mvnrepository.com/artifact/commons-io/commons-io -->
76+
<dependency>
77+
<groupId>commons-io</groupId>
78+
<artifactId>commons-io</artifactId>
79+
</dependency>
80+
81+
<!-- http://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
82+
<dependency>
83+
<groupId>commons-fileupload</groupId>
84+
<artifactId>commons-fileupload</artifactId>
85+
</dependency>
86+
87+
<!-- https://mvnrepository.com/artifact/org.springframework.social/ spring-social-core -->
88+
<dependency>
89+
<groupId>org.springframework.social</groupId>
90+
<artifactId>spring-social-core</artifactId>
91+
</dependency>
92+
93+
</dependencies>
94+
95+
<build>
96+
<plugins>
97+
<!--OSSRH -->
98+
<plugin>
99+
<groupId>org.sonatype.plugins</groupId>
100+
<artifactId>nexus-staging-maven-plugin</artifactId>
101+
<version>1.6.7</version>
102+
<extensions>true</extensions>
103+
<configuration>
104+
<serverId>ossrh</serverId>
105+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
106+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
107+
</configuration>
108+
</plugin>
109+
<!--OSSRH -->
110+
<plugin>
111+
<groupId>org.apache.maven.plugins</groupId>
112+
<artifactId>maven-release-plugin</artifactId>
113+
<version>2.5.3</version>
114+
<configuration>
115+
<autoVersionSubmodules>true</autoVersionSubmodules>
116+
<useReleaseProfile>false</useReleaseProfile>
117+
<releaseProfiles>release</releaseProfiles>
118+
<goals>deploy</goals>
119+
</configuration>
120+
</plugin>
121+
<!--OSSRH -->
122+
<plugin>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<artifactId>maven-source-plugin</artifactId>
125+
<executions>
126+
<execution>
127+
<id>attach-sources</id>
128+
<goals>
129+
<goal>jar-no-fork</goal>
130+
</goals>
131+
</execution>
132+
</executions>
133+
</plugin>
134+
<!--OSSRH -->
135+
<plugin>
136+
<groupId>org.apache.maven.plugins</groupId>
137+
<artifactId>maven-javadoc-plugin</artifactId>
138+
<executions>
139+
<execution>
140+
<id>attach-javadocs</id>
141+
<goals>
142+
<goal>jar</goal>
143+
</goals>
144+
</execution>
145+
</executions>
146+
</plugin>
147+
<!-- OSSRH -->
148+
<!-- <plugin>
149+
<groupId>org.apache.maven.plugins</groupId>
150+
<artifactId>maven-gpg-plugin</artifactId>
151+
<version>1.5</version>
152+
<executions>
153+
<execution>
154+
<id>sign-artifacts</id>
155+
<phase>verify</phase>
156+
<goals>
157+
<goal>sign</goal>
158+
</goals>
159+
</execution>
160+
</executions>
161+
</plugin> -->
162+
</plugins>
163+
</build>
235164

236165
</project>

0 commit comments

Comments
 (0)