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

updating readme #93

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ This purpose of this project is to show how to use Maven and Jenkins together.

Updates,

and more updates
and more update9*
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
import java.util.ArrayList;
import java.util.List;

/**
* Created by Jason on 6/19/2015.
*/
@Configuration
@ComponentScan("pro.jtaylor.timetracker.core")
public class TrackerCoreConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

/**
* Created by Jason on 6/19/2015.
*/
@Component
@Scope("prototype")
public class TimeEntry {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@

import java.util.List;

/**
* Created by Jason on 6/20/2015.
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = TrackerCoreConfig.class)
public class TrackerCoreConfigTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import pro.jtaylor.timetracker.core.dao.TimeEntry;

/**
* Created by Jason on 6/19/2015.
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = TrackerCoreConfig.class)
public class TrackerTest {
Expand Down