This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
134 lines (127 loc) · 4.87 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>info.magnolia.maven.poms</groupId>
<artifactId>magnolia-parent-pom-community</artifactId>
<version>34</version>
</parent>
<groupId>com.albertosoto.magnolia.bigdata</groupId>
<artifactId>bigdata-magnolia</artifactId>
<name>bigdata-magnolia (parent pom)</name>
<version>3.2.2-SNAPSHOT</version>
<packaging>pom</packaging>
<developers>
<developer>
<name>Alberto Soto Fernandez</name>
<email>alberto.soto@gmail.com</email>
</developer>
</developers>
<description>R lang integration into Magnolia CMS example using Spring MVC Rest points, Magnolia Rest points,
Magnolia Blossom techniques and Magnolia app with vaadin. Retos digitales by magnolia community 2018.
</description>
<properties>
<checkstyle.skip>true</checkstyle.skip>
<javaVersion>1.8</javaVersion>
<magnoliaVersion>5.7</magnoliaVersion>
<damVersion>2.3</damVersion>
<siteVersion>1.2</siteVersion>
<imagingVersion>3.4</imagingVersion>
<springVersion>4.2.5.RELEASE</springVersion>
<blossomVersion>3.2.1</blossomVersion>
<git-repo>github.com/albertoSoto/bigdata-magnolia</git-repo>
</properties>
<!-- Fill the following in, so you can use the release plugin -->
<scm>
<connection>scm:git:ssh://git@github.com/albertoSoto/bigdata-magnolia</connection>
<developerConnection>scm:git:ssh://git@github.com/albertoSoto/bigdata-magnolia</developerConnection>
<url>https://github.com/albertoSoto/bigdata-magnolia</url>
<tag>HEAD</tag>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>info.magnolia</groupId>
<artifactId>magnolia-empty-webapp</artifactId>
<version>${magnoliaVersion}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>info.magnolia</groupId>
<artifactId>magnolia-empty-webapp</artifactId>
<version>${magnoliaVersion}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${javaVersion}</source>
<target>${javaVersion}</target>
</configuration>
</plugin>
</plugins>
<!-- default resources configuration which will filter your module descriptors -->
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
<includes>
<include>META-INF/magnolia/*</include>
</includes>
</resource>
</resources>
</build>
<repositories>
<repository>
<id>magnolia.public</id>
<url>https://nexus.magnolia-cms.com/content/groups/public</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>vaadin-addons</id>
<url>http://maven.vaadin.com/vaadin-addons</url>
</repository>
<!-- IF YOU NEED MODULES FROM THE ENTERPRISE VERSION, UNCOMMENT THE FOLLOWING REPOSITORY -->
<!--
<repository>
<id>magnolia.enterprise.releases</id>
<url>http://nexus.magnolia-cms.com/content/repositories/magnolia.enterprise.releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
-->
</repositories>
<pluginRepositories>
<pluginRepository>
<id>magnolia.nexus.public</id>
<url>https://nexus.magnolia-cms.com/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<modules>
<module>bigdata-magnolia-module</module>
<module>bigdata-magnolia-webapp</module>
</modules>
</project>