Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
COMMERCE-316 Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ithildir committed Jul 4, 2018
0 parents commit 7e8dc6a
Show file tree
Hide file tree
Showing 6,645 changed files with 1,120,545 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
**/docroot/WEB-INF/tld/
*.iml
.classpath
.gh.json
.gradle/
.idea/
.project
.sass-cache/
.settings/
bin/
build/
classes/
ivy.xml.MD5
lib/
liferay-hook.xml.processed
node_modules/
npm-debug.log
test-classes/
test-coverage/
test-results/
tmp/
504 changes: 504 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

92 changes: 92 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# Emporio

Emporio is an open source digital commerce platform written in Java. It was
built from the ground up to work with Liferay Portal so that Liferay developers
can leverage fully integrated web content management systems and best-in-breed
portal capabilities in their commerce projects.

Liferay designed Emporio for commerce projects that are very large or complex;
it can support millions of products in challenging B2B industries.

## Key Features

* Catalog Management and Product Browsing
* Checkout, Discounts and Pricing
* Payments and Tax Management
* Shipping Management
* Order Management
* Customer Account Management
* Multicurrency and Multilanguage

## Quick Start

Requirements: [Liferay Portal 7.1 B3](https://github.com/liferay/liferay-portal)

1. Clone the Emporio repository (this [repository](https://github.com/liferay/com-liferay-commerce-private))
to the same level of your directory tree as your Liferay Home folder (Liferay
Home is the folder that contains the Tomcat folder for Liferay 7.1).

2. Start Liferay Portal 7.1.

In the terminal, navigate to the source code folder
(`com-liferay-commerce-private`).

Windows Users: enter `gradlew.bat deploy -Dbuild.profile=portal`

MacOS/Linux: enter `./gradlew deploy -Dbuild.profile=portal`

This takes a few minutes. When the build is complete, go to--or refresh--
http://localhost:8080 in your browser. Emporio's features are now available in
your Portal instance.

## Bug Reporting

Did you find a bug? Please open a ticket for it at [issues.liferay.com](https://issues.liferay.com).

## Stay Connected

There are many ways for you to learn what's new in Emporio, get answers to
questions and connect with other Liferay community members.

### Twitter

Follow us on Twitter:

- [@Liferay](http://twitter.com/Liferay) Latest announcements
- [@LiferayDocs](http://twitter.com/Liferaydocs) New articles
- [@LiferayEng](http://twitter.com/Liferayeng) Tweets from the core engineering
team

### Blog

Read details on announcements, engage in discussions and learn more by following
[Liferay's Blog](http://www.liferay.com/community/blogs).

### Forum

Do you have questions? Ask them on our
[forums](http://www.liferay.com/community/forums).

### Chat

Join the conversation on Liferay's Community Chat.

* Get your invite: [community-chat.liferay.com](https://community-chat.liferay.com)
* Enter the chat: [liferay-community.slack.com](https://liferay-community.slack.com)
* Channel: `#emporio`

## License

This project, *Emporio*, is free software ("Licensed Software"); you can
redistribute it and/or modify it under the terms of the [GNU Lesser General Public License](./LICENSE.txt)
as published by the Free Software Foundation; either version 2.1 of the License,
or (at your option) any later version.

This project is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; including but not limited to, the implied warranty of MERCHANTABILITY,
NONINFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
Public License for more details.

You should have received a copy of the [GNU Lesser General Public License](./LICENSE.txt)
along with this project; if not, write to the Free Software Foundation, Inc., 51
Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
15 changes: 15 additions & 0 deletions app.bnd
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Liferay-Releng-App-Description:
Liferay-Releng-App-Title: ${liferay.releng.app.title.prefix} Commerce
Liferay-Releng-Bundle: false
Liferay-Releng-Category:
Liferay-Releng-Demo-Url:
Liferay-Releng-Deprecated: false
Liferay-Releng-Fix-Delivery-Method:
Liferay-Releng-Labs: false
Liferay-Releng-Marketplace: false
Liferay-Releng-Portal-Required: false
Liferay-Releng-Public: ${liferay.releng.public}
Liferay-Releng-Restart-Required: true
Liferay-Releng-Suite:
Liferay-Releng-Support-Url: http://www.liferay.com
Liferay-Releng-Supported: ${liferay.releng.supported}
15 changes: 15 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
buildscript {
dependencies {
classpath group: "com.liferay", name: "com.liferay.gradle.plugins.defaults", version: "latest.release"
}

repositories {
mavenLocal()

maven {
url "https://repository-cdn.liferay.com/nexus/content/groups/public"
}
}
}

apply plugin: "com.liferay.root.defaults.plugin"
3 changes: 3 additions & 0 deletions ci.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
subrepo.merge.pull.mention.users=\
iovaneale,\
marco-leo
Empty file.
4 changes: 4 additions & 0 deletions commerce-address-content-web/bnd.bnd
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Bundle-Name: Liferay Commerce Address Content Web
Bundle-SymbolicName: com.liferay.commerce.address.content.web
Bundle-Version: 1.0.0
Web-ContextPath: /commerce-address-content-web
20 changes: 20 additions & 0 deletions commerce-address-content-web/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
apply plugin: "com.liferay.lang.merger"

dependencies {
compileOnly group: "biz.aQute.bnd", name: "biz.aQute.bndlib", version: "3.1.0"
compileOnly group: "com.liferay", name: "com.liferay.dynamic.data.mapping.taglib", version: "2.0.0"
compileOnly group: "com.liferay", name: "com.liferay.frontend.taglib", version: "3.0.0"
compileOnly group: "com.liferay", name: "com.liferay.frontend.taglib.soy", version: "2.0.0"
compileOnly group: "com.liferay", name: "com.liferay.petra.lang", version: "1.0.0"
compileOnly group: "com.liferay", name: "com.liferay.petra.string", version: "2.0.0"
compileOnly group: "com.liferay", name: "com.liferay.portal.configuration.metatype.api", version: "1.0.0"
compileOnly group: "com.liferay", name: "com.liferay.portlet.display.template", version: "2.0.0"
compileOnly group: "com.liferay.portal", name: "com.liferay.portal.kernel", version: "3.5.0"
compileOnly group: "com.liferay.portal", name: "com.liferay.util.taglib", version: "2.0.0"
compileOnly group: "javax.portlet", name: "portlet-api", version: "3.0.0"
compileOnly group: "javax.servlet", name: "javax.servlet-api", version: "3.0.1"
compileOnly group: "org.osgi", name: "org.osgi.service.component.annotations", version: "1.3.0"
compileOnly project(":apps:commerce:commerce-api")
compileOnly project(":apps:commerce:commerce-product-service")
compileOnly project(":apps:commerce:commerce-service")
}
Loading

0 comments on commit 7e8dc6a

Please sign in to comment.