mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
fixing build
This commit is contained in:
parent
8489eaea6d
commit
9e67329703
@ -9,7 +9,7 @@ The goal of this project is to provide a high quality product that can be deploy
|
|||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|
||||||
The following products must be installed:
|
The following products must be installed:
|
||||||
* Java Development Kit 6 or higher (http://java.sun.com/javase/downloads/index.jsp)
|
* Java Development Kit 7 or higher (http://java.sun.com/javase/downloads/index.jsp)
|
||||||
* Maven 2.2.1 or higher (http://maven.apache.org/)
|
* Maven 2.2.1 or higher (http://maven.apache.org/)
|
||||||
|
|
||||||
### Compiling
|
### Compiling
|
||||||
@ -22,7 +22,7 @@ WiseMapping uses Maven as packaging and project management. The project is compo
|
|||||||
|
|
||||||
Full compilation of the project can be done executing within <project-dir>:
|
Full compilation of the project can be done executing within <project-dir>:
|
||||||
|
|
||||||
`mvn install`
|
`mvn clean install`
|
||||||
|
|
||||||
Once this command is execute, the file <project-dir>/wise-webapp/target/wisemapping.war will be generated.
|
Once this command is execute, the file <project-dir>/wise-webapp/target/wisemapping.war will be generated.
|
||||||
|
|
||||||
@ -30,11 +30,12 @@ Once this command is execute, the file <project-dir>/wise-webapp/target/wisemapp
|
|||||||
|
|
||||||
The previously generated war can be deployed locally executing within the directory <project-dir>/wise-webapp the following command:
|
The previously generated war can be deployed locally executing within the directory <project-dir>/wise-webapp the following command:
|
||||||
|
|
||||||
`mvn jetty:run-war`
|
`mvn jetty:run`
|
||||||
|
|
||||||
This will start the application on the URL: http://localhost:8080/wise-webapp/. Additionally, a file based database is automatically populated with a test user.
|
This will start the application on the URL: http://localhost:8080. Additionally, a file based database is automatically populated with a test user.
|
||||||
|
|
||||||
User: test@wisemapping.org
|
User: test@wisemapping.org
|
||||||
|
Pass: test
|
||||||
|
|
||||||
|
|
||||||
## Running the JS only version
|
## Running the JS only version
|
||||||
|
@ -13,7 +13,6 @@ activation_code BIGINT NOT NULL,
|
|||||||
activation_date DATE,
|
activation_date DATE,
|
||||||
allow_send_email CHAR(1) NOT NULL,
|
allow_send_email CHAR(1) NOT NULL,
|
||||||
locale varchar(5),
|
locale varchar(5),
|
||||||
auth_schema INTEGER NOT NULL,
|
|
||||||
FOREIGN KEY(colaborator_id) REFERENCES COLLABORATOR(id)
|
FOREIGN KEY(colaborator_id) REFERENCES COLLABORATOR(id)
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -70,4 +69,4 @@ user_id INTEGER NOT NULL,
|
|||||||
login_date date
|
login_date date
|
||||||
);
|
);
|
||||||
|
|
||||||
COMMIT;
|
COMMIT;
|
||||||
|
@ -361,7 +361,7 @@
|
|||||||
<includes>
|
<includes>
|
||||||
<include>config/database/hsql/drop-schemas.sql</include>
|
<include>config/database/hsql/drop-schemas.sql</include>
|
||||||
<include>config/database/hsql/create-schemas.sql</include>
|
<include>config/database/hsql/create-schemas.sql</include>
|
||||||
<include>config/database/hsql/test-data.sql</include>
|
<include>config/database/hsql/atest-data.sql</include>
|
||||||
</includes>
|
</includes>
|
||||||
</fileset>
|
</fileset>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
Loading…
Reference in New Issue
Block a user