I'm using liferay 7.1 ga3.
In the build.gradle I need to use :
`compileOnly group:"com.liferay",name:"com.liferay.portal.instance.lifecycle",version: '3.0.0'
because I want to use BlockchainPortalInstanceLifecycleListener
.
If I use the above, it throws the exception.
If I use like this
compileInclued group: "com.liferay", name: "com.liferay.portal.instance.lifecycle",version: '3.0.0'
instead, it does not throw the exception, but it doesn't work.