Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Php mavenisation of the project #46

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
PHP mavenisation
lcotonea committed Oct 6, 2012
commit a0fc9eea59db17192b8d23c6127f3da97b51d0c5
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# ignore objects and archives, anywhere in the tree.
*.[oa]

# eclipse conf file
.settings
.classpath
.project
.manager
.scala_dependencies
.cache

# idea conf files
.idea
*.iml
*.ipr
*.iws

# svn files
.svn

# mvn dir
\target
\Parkeon-demat-pilote\target
\Parkeon-demat-storage\target
\Parkeon-demat-utils\target
83 changes: 83 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.phpmaven</groupId>
<artifactId>php-parent-pom</artifactId>
<version>2.0.2</version>
</parent>

<properties>
<phpmaven.release.number>2.0.2</phpmaven.release.number>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<phpunit.version>3.6.10</phpunit.version>
</properties>

<groupId>org.epiphany</groupId> <!-- TODO: specify a valid groupId -->
<artifactId>epiphany</artifactId> <!-- TODO: specify a valid artefactId -->
<version>2.0.1-sogeti-SNAPSHOT</version> <!-- TODO : specify a valid version -->
<packaging>php</packaging>

<name>Epiphany</name>
<description>A micro PHP framework that's fast, easy, clean and RESTful. The framework does not do a lot of magic under the hood. It is, by design, very simple and very powerful.</description>
<url>https://github.com/jmathai/epiphany</url>
<inceptionYear>2009</inceptionYear>

<build>
<plugins>
<plugin>
<groupId>org.phpmaven</groupId>
<artifactId>maven-php-plugin</artifactId>
<version>${phpmaven.plugin.version}</version>

<configuration>
</configuration>
</plugin>
<!-- <plugin>
<groupId>org.sample</groupId>
<artifactId>own-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<extensions>true</extensions>
</plugin> -->

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0</version>
<inherited>true</inherited>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.phpmaven</groupId>
<artifactId>maven-php-plugin</artifactId>
<version>${phpmaven.plugin.version}</version>
<reportSets>
<reportSet>
<reports>
<report>phpdocumentor</report>
<report>phpunit-coverage</report>
<report>phpunit</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</reportPlugins>
</configuration>
</plugin>

</plugins>
</build>

<dependencies>
<dependency>
<groupId>de.phpunit</groupId>
<artifactId>PHPUnit</artifactId>
<version>${phpunit.version}</version>
<type>phar</type>
<scope>test</scope>
</dependency>
</dependencies>


</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
28 changes: 28 additions & 0 deletions src/site/apt/index.apt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
-----
MY LIBRARY
-----
MY NAME
-----
14-Jun-2010
-----


my project

* Introduction

This is a meaningful sentence.

* Hello World

** My chapter

{{{read-more.html}Read more}}

** My other chapter

amazing...

* Bye Bye

I am no going to sleep
33 changes: 33 additions & 0 deletions src/site/site.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="My Project">
<version position="left" />

<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-stylus-skin</artifactId>
<version>1.0</version>
</skin>
<bannerLeft>
<name>php-maven.org</name>
<src>images/mylogo.png</src>
<href>http://www.mydomain.org/</href>
</bannerLeft>
<body>
<links>
<item name="Maven" href="http://maven.apache.org/" />
<item name="PHPUnit" href="http://www.phpunit.de/" />
<item name="doxygen" href="http://www.stack.nl/~dimitri/doxygen/" />
<item name="PHPDocumentor" href="http://www.phpdoc.org/" />
<item name="PHP-Maven" href="http://www.php-maven.org/" />
</links>

<menu name="Main">
<item name="Official site" href="index.html" />
</menu>
<menu name="Some Menu">
<item name="Some Link" href="mylink.html" />
<item name="Some Other Link" href="mylink.html" />
</menu>

</body>
</project>