Skip to content

Instantly share code, notes, and snippets.

@alex4u2nv
Created March 19, 2018 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex4u2nv/00412b0df1409c7bcd5e98886e176714 to your computer and use it in GitHub Desktop.
Save alex4u2nv/00412b0df1409c7bcd5e98886e176714 to your computer and use it in GitHub Desktop.
alfresco-upgrade-pom
<!-- Alfresco Maven Plugin version to use -->
<alfresco.sdk.version>3.0.0</alfresco.sdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Alfresco Data directory, which will contain: Content Store (i.e. the files we upload) Database (i.e. the metadata for the uploaded files) Search index (i.e. the indexed content and metadata) Configured in alfresco-global.properties with the
'dir.root' property. -->
<alfresco.data.location>${session.executionRootDirectory}/alf_data_dev</alfresco.data.location>
<!-- Duplicated with alfresco.solrHome in the plugin, we need them out here to do filtering -->
<solr.home>${alfresco.data.location}/solr</solr.home>
<solr.model.dir>${solr.home}/alfrescoModels</solr.model.dir>
<solr.content.dir>${solr.home}/index</solr.content.dir>
<!-- Properties used in dependency declarations, you don't need to change these -->
<alfresco.groupId>org.alfresco</alfresco.groupId>
<!-- Alfresco Platform and Share webapp versions, these are the original Alfresco webapps that will be customized and then deployed and run by the tomcat maven plugin when executing for example $ mvn clean install alfresco:run -->
<alfresco.platform.version>5.0.d</alfresco.platform.version>
<alfresco.share.version>5.0.d</alfresco.share.version>
<!-- Default is to run with a Community edition, change to 'enterprise' if using Enterprise edition -->
<maven.alfresco.edition>community</maven.alfresco.edition>
<!-- Alfresco Surf version, if you change Share version you might need to change Surf version -->
<alfresco.surf.version>6.11</alfresco.surf.version>
<!-- JRebel Hot reloading of classpath stuff and web resource stuff -->
<jrebel.version>1.1.6</jrebel.version>
<!-- Environment to use, Alfresco Maven Plugin will copy alfresco-global-*.properties files from this directory, such as src/test/properties/local -->
<env>local</env>
<!-- Compile with Java 7, default is 5 -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<share.client.url>http://localhost:8080/share</share.client.url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment