forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LPS-38337 Add missing portal-pacl and util-slf4j artifacts
- Loading branch information
1 parent
ece7e61
commit 8588841
Showing
4 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0"?> | ||
|
||
<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>com.liferay.portal</groupId> | ||
<artifactId>portal-parent</artifactId> | ||
<version>@version@</version> | ||
</parent> | ||
<groupId>com.liferay.portal</groupId> | ||
<artifactId>portal-pacl</artifactId> | ||
<name>Liferay Portal PACL</name> | ||
<version>@version@</version> | ||
<description>Contains implementation for the portal security manager.</description> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.liferay.portal</groupId> | ||
<artifactId>portal-impl</artifactId> | ||
<version>@version@</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.liferay.portal</groupId> | ||
<artifactId>portal-service</artifactId> | ||
<version>@version@</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.liferay.portal</groupId> | ||
<artifactId>util-bridges</artifactId> | ||
<version>@version@</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.liferay.portal</groupId> | ||
<artifactId>util-java</artifactId> | ||
<version>@version@</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0"?> | ||
|
||
<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>com.liferay.portal</groupId> | ||
<artifactId>portal-parent</artifactId> | ||
<version>@version@</version> | ||
</parent> | ||
<groupId>com.liferay.portal</groupId> | ||
<artifactId>util-slf4j</artifactId> | ||
<name>Liferay Util SLF4J</name> | ||
<version>@version@</version> | ||
<description>Contains Liferay SLF4J Binding. Classes are loaded separately for each plugin.</description> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.liferay.portal</groupId> | ||
<artifactId>portal-service</artifactId> | ||
<version>@version@</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |