This file contains hidden or 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
| #!/bin/bash | |
| echo "foo" >> /Users/sbrinkmann/merge.log | |
| echo "$*" >> /Users/sbrinkmann/merge.log | |
| fileNames=$(echo "$*") | |
| fullfile=$1 | |
| filePath=$(dirname $fullfile) | |
| fname=$(basename $fullfile) |
This file contains hidden or 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
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: your-nodejs-app-name | |
| # Required-Start: $all | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start daemon at boot time | |
| # Description: Enable service provided by daemon. |
This file contains hidden or 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
| Manifest-Version: 1 | |
| Bundle-ManifestVersion: 2 | |
| Bundle-Description: My Bundle Description | |
| Bundle-Name: My Bundle Name | |
| Bundle-SymbolicName: de.eggs.cq.generic.MyBundleEmbeddedDependencyUnresolved | |
| Bundle-Version: 14.01.0.SNAPSHOT | |
| Fragment-Host: de.eggs.otherBundle | |
| Export-Package: de.eggs.myBundle |
This file contains hidden or 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
| <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/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>de.eggs.cq.generic</groupId> | |
| <artifactId>MyBundleEmbeddedDependencyUnresolved</artifactId> | |
| <version>14.01.0-SNAPSHOT</version> | |
| <name>My Bundle Name</name> | |
| <description>My Bundle Description</description> |
This file contains hidden or 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
| Manifest-Version: 1 | |
| Bundle-ManifestVersion: 2 | |
| Bundle-Description: My Bundle Description | |
| Bundle-Name: My Bundle Name | |
| Bundle-SymbolicName: de.eggs.cq.generic.MyBundleEmbeddedDependencyUnresolved | |
| Bundle-Version: 14.01.0.SNAPSHOT | |
| Export-Package: de.eggs.myBundle,de.eggs.myBundle.otherPackage |
This file contains hidden or 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
| Manifest-Version: 1 | |
| Bundle-ManifestVersion: 2 | |
| Bundle-Description: My Bundle Description | |
| Bundle-Name: My Bundle Name | |
| Bundle-SymbolicName: de.eggs.cq.generic.MyBundleEmbeddedDependency | |
| Bundle-Version: 14.01.0.SNAPSHOT | |
| Export-Package: de.eggs.myBundle |
This file contains hidden or 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
| <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/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>de.eggs.cq.generic</groupId> | |
| <artifactId>MyBundleEmbeddedDependency</artifactId> | |
| <version>14.01.0-SNAPSHOT</version> | |
| <name>My Bundle Name with embedded dependency</name> | |
| <description>My Bundle Description</description> |
This file contains hidden or 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
| <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/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>de.eggs.cq.generic</groupId> | |
| <artifactId>MyBundle</artifactId> | |
| <version>14.01.0-SNAPSHOT</version> | |
| <name>My Bundle Name</name> | |
| <description>My Bundle Description</description> |
This file contains hidden or 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
| Manifest-Version: 1 | |
| Bundle-ManifestVersion: 2 | |
| Bundle-Description: My Bundle Description | |
| Bundle-Name: My Bundle Name | |
| Bundle-SymbolicName: de.eggs.cq.generic.MyBundle | |
| Bundle-Version: 14.01.0.SNAPSHOT | |
| Export-Package: de.eggs.myBundle |