Skip to content

Commit

Permalink
fix missing powershell scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
pgpv committed Oct 30, 2015
1 parent a8d2573 commit ac0f6aa
Showing 1 changed file with 29 additions and 5 deletions.
34 changes: 29 additions & 5 deletions packaging/neo4j-desktop/pom.xml
Expand Up @@ -105,7 +105,7 @@
<goal>shade</goal>
</goals>
<configuration>
<!--This line is needed to prevent maven shade plugin from getting stuck in infinite loop when building dependency reduced POM https://jira.codehaus.org/browse/MSHADE-148-->
<!--This line is needed to prevent maven shade plugin from getting stuck in infinite loop when building dependency reduced POM https://jira.codehaus.org/browse/MSHADE-148-->
<createDependencyReducedPom>false</createDependencyReducedPom>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
Expand Down Expand Up @@ -145,12 +145,36 @@
<mkdir dir="${project.build.directory}/licenses" />
<mkdir dir="${project.build.directory}/plugins" />
<mkdir dir="${project.build.directory}/shell-scripts" />
<mkdir dir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<fixcrlf file="${project.basedir}/../../community/LICENSE.txt" destDir="${project.build.directory}/licenses" eol="dos" />
<fixcrlf file="src/main/distribution/text/community/LICENSES.txt" destDir="${project.build.directory}/licenses" eol="dos" />
<fixcrlf file="src/main/distribution/text/community/NOTICE.txt" destDir="${project.build.directory}/licenses" eol="dos" />
<fixcrlf file="src/main/distribution/text/plugins/README.txt" destDir="${project.build.directory}/plugins" eol="dos" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/neo4j-import" todir="${project.build.directory}/shell-scripts" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/neo4j-shell" todir="${project.build.directory}/shell-scripts" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Confirm-Neo4jHome.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Confirm-Neo4jServerObject.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Get-Java.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Get-KeyValuePairsFromConfFile.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Get-Neo4jHome.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Get-Neo4jServer.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Get-Neo4jSetting.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Initialize-Neo4jHACluster.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Initialize-Neo4jServer.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Install-Neo4jArbiter.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Install-Neo4jServer.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Neo4j-Management.psm1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Remove-Neo4jSetting.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Restart-Neo4jArbiter.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Restart-Neo4jServer.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Set-Neo4jSetting.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Start-Neo4jArbiter.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Start-Neo4jBackup.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Start-Neo4jImport.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Start-Neo4jServer.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Start-Neo4jShell.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Uninstall-Neo4jArbiter.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<copy file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4j-Management/Uninstall-Neo4jServer.ps1" todir="${project.build.directory}/shell-scripts/Neo4j-Management" />
<fixcrlf file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4jImport.bat" destDir="${project.build.directory}/shell-scripts" eol="dos" />
<fixcrlf file="${project.basedir}/../standalone/src/main/distribution/shell-scripts/bin/Neo4jShell.bat" destDir="${project.build.directory}/shell-scripts" eol="dos" />
</target>
Expand All @@ -161,10 +185,10 @@

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>

Expand Down

0 comments on commit ac0f6aa

Please sign in to comment.