Toggle navigation
Toggle navigation
This project
Loading...
Sign in
신은섭(Shin Eun Seop)
/
Detecting_fraud_clicks
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
2
Merge Requests
0
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
신은섭(Shin Eun Seop)
2018-06-05 09:04:21 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d0c0ed90c8b26845c22a34e485db7b07410bd918
d0c0ed90
1 parent
d719a023
fix maven complier plugin
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
10 deletions
README.md
pom.xml
README.md
View file @
d0c0ed9
# 2018-JAVA-Cesco
Detecting fraud clicks using machine learning
## execution script
### Amazon Linux
```
bash
# update
sudo yum update -y
# install git
sudo yum install git -y
# install maven
sudo wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo
sudo sed -i s/
\$
releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo
sudo yum install -y apache-maven
mvn --version
```
\ No newline at end of file
...
...
pom.xml
View file @
d0c0ed9
...
...
@@ -18,11 +18,6 @@
</dependency>
<dependency>
<groupId>
org.apache.spark
</groupId>
<artifactId>
spark-sql_2.11
</artifactId>
<version>
2.3.0
</version>
</dependency>
<dependency>
<groupId>
org.apache.spark
</groupId>
<artifactId>
spark-mllib_2.11
</artifactId>
<version>
2.3.0
</version>
</dependency>
...
...
@@ -43,11 +38,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.6.1
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
</configuration>
<version>
3.7.0
</version>
</plugin>
</plugins>
</build>
...
...
Please
register
or
login
to post a comment