1+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+
6+ <groupId >org.hibernate</groupId >
7+ <artifactId >hibernate-iris</artifactId >
8+ <version >1.0.0</version >
9+ <name >Support to Hibernate - InterSystems IRIS</name >
10+
11+ <properties >
12+ <maven .compiler.target>1.8</maven .compiler.target>
13+ <maven .compiler.source>1.8</maven .compiler.source>
14+ <github .global.server>github</github .global.server>
15+ </properties >
16+
17+ <dependencies >
18+ <dependency >
19+ <groupId >org.hibernate</groupId >
20+ <artifactId >hibernate-core</artifactId >
21+ <version >5.2.18.Final</version >
22+ </dependency >
23+ </dependencies >
24+
25+ <distributionManagement >
26+ <repository >
27+ <id >internal.repo</id >
28+ <name >Temporary Staging Repository</name >
29+ <url >file://${project.build.directory} /mvn-repo</url >
30+ </repository >
31+ </distributionManagement >
32+
33+ <build >
34+ <plugins >
35+ <plugin >
36+ <groupId >org.apache.maven.plugins</groupId >
37+ <artifactId >maven-compiler-plugin</artifactId >
38+ <version >3.6.1</version >
39+ <configuration >
40+ <source >1.8</source >
41+ <target >1.8</target >
42+ </configuration >
43+ </plugin >
44+ <plugin >
45+ <artifactId >maven-deploy-plugin</artifactId >
46+ <version >2.8.2</version >
47+ <configuration >
48+ <altDeploymentRepository >internal.repo::default::file://${project.build.directory} /mvn-repo</altDeploymentRepository >
49+ </configuration >
50+ </plugin >
51+ <plugin >
52+ <groupId >com.github.github</groupId >
53+ <artifactId >site-maven-plugin</artifactId >
54+ <version >0.11</version >
55+ <configuration >
56+ <message >Maven artifacts for ${project.version} </message >
57+ <noJekyll >true</noJekyll >
58+ <outputDirectory >${project.build.directory} /mvn-repo</outputDirectory >
59+ <branch >refs/heads/mvn-repo</branch >
60+ <includes ><include >**/*</include ></includes >
61+ <repositoryName >hibernate-iris</repositoryName >
62+ <repositoryOwner >yurimarx</repositoryOwner >
63+ </configuration >
64+ <executions >
65+ <execution >
66+ <goals >
67+ <goal >site</goal >
68+ </goals >
69+ <phase >deploy</phase >
70+ </execution >
71+ </executions >
72+ </plugin >
73+
74+ </plugins >
75+ </build >
76+
77+
78+
79+ </project >
0 commit comments