Skip to content

Commit

Permalink
Merge pull request #1 from parsek-doo/master
Browse files Browse the repository at this point in the history
Upgrade to LR 6.2
  • Loading branch information
ivan-novakov committed Jan 2, 2014
2 parents 41b1b07 + 5fa80a1 commit 1d2bb1f
Show file tree
Hide file tree
Showing 6 changed files with 402 additions and 329 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
target
.idea
liferay-shibboleth-plugin.iml
27 changes: 23 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<packaging>war</packaging>
<name>liferay-shibboleth-plugin</name>
<url>https://github.com/ivan-novakov/liferay-shibboleth-plugin</url>
<version>1.1</version>
<version>1.2</version>
<properties>
<liferay.auto.deploy.dir>/opt/lr/deploy</liferay.auto.deploy.dir>
<liferay.version>6.1.0</liferay.version>
<liferay.version>6.2.0-RC5</liferay.version>
</properties>
<build>
<finalName>shibboleth-plugin-hook</finalName>
Expand All @@ -29,8 +29,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>1.5</source>
<target>1.5</target>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
Expand All @@ -39,6 +39,25 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<webResources>
<resource>
<filtering>true</filtering>
<directory>src/main/webapp</directory>
<includes>
<include>**/liferay-plugin-package.xml</include>
<include>**/web.xml</include>
</includes>
</resource>
</webResources>
<warSourceDirectory>src/main/webapp</warSourceDirectory>
<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down
Loading

0 comments on commit 1d2bb1f

Please sign in to comment.