Skip to content

Commit

Permalink
enable hibernate envers
Browse files Browse the repository at this point in the history
  • Loading branch information
endymuhardin committed Oct 24, 2012
1 parent e30c802 commit 05ca0c7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions pom.xml
Expand Up @@ -44,6 +44,12 @@
<artifactId>hibernate-core</artifactId>
<version>${org.hibernate.version}</version>
</dependency>

<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-envers</artifactId>
<version>${org.hibernate.version}</version>
</dependency>

<dependency>
<groupId>org.hibernate</groupId>
Expand Down
Expand Up @@ -6,8 +6,9 @@
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import org.hibernate.envers.Audited;

@Entity
@Entity @Audited
@Table(name="m_kategori")
public class Kategori {

Expand Down

0 comments on commit 05ca0c7

Please sign in to comment.